Skip to content

Commit 2485183

Browse files
authored
reduce verbosity of extension (#127)
1 parent 2fcac79 commit 2485183

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ultraplot/tests/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def _remove_success(self, report: pytest.TestReport):
4343
)
4444
target = (self.result_dir / name).absolute()
4545
if target.is_dir():
46-
print(f"Removing {report.nodeid}")
4746
shutil.rmtree(target)
4847
else:
4948
print(f"Did not find {report.nodeid}")
@@ -58,7 +57,7 @@ def pytest_runtest_logreport(self, report):
5857
self._remove_success(report)
5958
else:
6059
print(f"{report.failed=}")
61-
print(f"Skipping {report.nodeid}")
60+
print(f"Test {report.nodeid} failed!")
6261

6362

6463
# Register the plugin if the option is used

0 commit comments

Comments
 (0)