Skip to content

Commit 566f966

Browse files
committed
Merge branch 'main' into merge_wheel
2 parents 1f5159e + dbde2b4 commit 566f966

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

cuda_pathfinder/tests/conftest.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ def pytest_configure(config):
1010

1111

1212
def pytest_terminal_summary(terminalreporter, exitstatus, config): # noqa: ARG001
13+
if not config.getoption("verbose"):
14+
return
15+
if hasattr(config.option, "iterations"): # pytest-freethreaded runs all tests at least twice
16+
return
17+
if getattr(config.option, "count", 1) > 1: # pytest-repeat
18+
return
19+
1320
if config.custom_info:
1421
terminalreporter.write_sep("=", "INFO summary")
1522
for msg in config.custom_info:

0 commit comments

Comments
 (0)