From efa5ea79f5eb49fad496f4549867d0d9116a9046 Mon Sep 17 00:00:00 2001 From: dav3r Date: Tue, 24 Sep 2024 16:01:23 -0400 Subject: [PATCH] Enable pytest debug logging More logging is always appreciated when troubleshooting failed tests. Co-authored-by: felddy --- pytest.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pytest.ini b/pytest.ini index 45cf99a..1627b47 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,4 @@ [pytest] -# Increase verbosity and display extra test summary info for tests that did not pass -addopts = --verbose -ra +# Increase verbosity, display extra test summary info for tests that did not pass, +# and enable debug logging +addopts = --verbose -ra --log-cli-level=DEBUG