Replies: 2 comments 4 replies
-
|
Beta Was this translation helpful? Give feedback.
3 replies
-
If you set the pytest_container log level to debug, it'll show you the container logs in the pytest test output. You can either use from pytest_container import add_logging_level_options
from pytest_container import set_logging_level_from_cli_args
def pytest_addoption(parser):
add_logging_level_options(parser)
def pytest_configure(config):
set_logging_level_from_cli_args(config) see also here: pytest_container/tests/conftest.py Line 27 in b6ced3f |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Running the container returns exit status 7. I'd like to figure out what the problem is.
Beta Was this translation helpful? Give feedback.
All reactions