diff --git a/conftest.py b/conftest.py index b3c20df7..90723701 100644 --- a/conftest.py +++ b/conftest.py @@ -33,10 +33,10 @@ def docker_client(): @pytest.fixture(scope='session') def image_name(): """Image name to test""" - return os.getenv('TEST_IMAGE', 'jupyter/base-notebook') + return os.getenv('TEST_IMAGE') -class TrackedContainer(object): +class TrackedContainer: """Wrapper that collects docker container configuration and delays container creation/execution.