Skip to content

Commit 50ad7a1

Browse files
committed
chore: comparison table on verbose
Only print out the comparison table on session end in verbose mode.
1 parent e00d297 commit 50ad7a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: tests/async/conftest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
@pytest.hookimpl
77
def pytest_sessionfinish(session: pytest.Session, exitstatus: int):
88
write_results_to_csv()
9-
print_comparison_table()
9+
if session.config.getoption("verbose"):
10+
print_comparison_table()

0 commit comments

Comments
 (0)