We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fcac79 commit 2485183Copy full SHA for 2485183
ultraplot/tests/conftest.py
@@ -43,7 +43,6 @@ def _remove_success(self, report: pytest.TestReport):
43
)
44
target = (self.result_dir / name).absolute()
45
if target.is_dir():
46
- print(f"Removing {report.nodeid}")
47
shutil.rmtree(target)
48
else:
49
print(f"Did not find {report.nodeid}")
@@ -58,7 +57,7 @@ def pytest_runtest_logreport(self, report):
58
57
self._remove_success(report)
59
60
print(f"{report.failed=}")
61
- print(f"Skipping {report.nodeid}")
+ print(f"Test {report.nodeid} failed!")
62
63
64
# Register the plugin if the option is used
0 commit comments