Skip to content

Commit

Permalink
enable debug logging for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispyles committed Nov 6, 2024
1 parent 1c3002c commit 71f9f7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from python_on_whales import docker
from unittest import mock

from otter import __file__ as OTTER_PATH
from otter import __file__ as OTTER_PATH, logging
from otter.test_files import TestCase, TestCaseResult, TestFile

from .utils import TestFileManager
Expand All @@ -23,6 +23,9 @@
TestCaseResult.__test__ = False
TestFile.__test__ = False

# enable debug logging for tests
logging.set_level(logging.DEBUG)


def pytest_addoption(parser):
"""
Expand Down

0 comments on commit 71f9f7b

Please sign in to comment.