diff --git a/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py b/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py index d0087a08..cd93fb75 100644 --- a/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py +++ b/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py @@ -58,6 +58,10 @@ def notebook_test_container(request, notebook_test_image): @pytest.fixture() def notebook_test_container_with_log(notebook_test_container): time.sleep(10) # wait that the entrypoint changed the permissions of the docker socket + print("Docker socket") + socket = Path("/var/run/docker.sock") + print(socket) + print(socket.stat()) print() print("Container Logs:") print(notebook_test_container.logs().decode("utf-8"), flush=True)