From 7a4116c54dcd55d521c2fd7fdbee0815b6dee349 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 27 Aug 2025 20:27:18 +0200 Subject: [PATCH] Update conftest.py --- conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index f489753..76ff5fe 100644 --- a/conftest.py +++ b/conftest.py @@ -47,6 +47,7 @@ def pytest_runtest_makereport(item, call): runtime_params.append(entry) # ---------- Capture prints ---------- +''' LOGFILE = pathlib.Path("outputs/test-prints.log") def pytest_sessionstart(session): @@ -92,7 +93,7 @@ class TeeStdout: def flush(self): self.original.flush() - +''' def pytest_configure(config): sys.stdout = TeeStdout(sys.stdout) sys.stderr = TeeStdout(sys.stderr)