We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d09d4ee commit de5c843Copy full SHA for de5c843
1 file changed
cuda_pathfinder/tests/conftest.py
@@ -9,6 +9,13 @@ def pytest_configure(config):
9
config.custom_info = []
10
11
12
+def pytest_terminal_summary(terminalreporter, exitstatus, config): # noqa: ARG001
13
+ if config.custom_info:
14
+ terminalreporter.write_sep("=", "INFO summary")
15
+ for msg in config.custom_info:
16
+ terminalreporter.line(f"INFO {msg}")
17
+
18
19
@pytest.fixture
20
def info_summary_append(request):
21
def _append(message):
0 commit comments