Skip to content

Commit de5c843

Browse files
committed
Reverting removing function
1 parent d09d4ee commit de5c843

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
@@ -9,6 +9,13 @@ def pytest_configure(config):
99
config.custom_info = []
1010

1111

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+
1219
@pytest.fixture
1320
def info_summary_append(request):
1421
def _append(message):

0 commit comments

Comments
 (0)