Skip to content

Commit

Permalink
actual fix for test_start_containter
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeliton committed Feb 29, 2024
1 parent 343c81b commit f82761c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/datascience-notebook/test/test_start_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@pytest.mark.parametrize(
"env,expected_server",
[
(["JUPYTER_ENABLE_LAB=no"], "notebook"),
(["DOCKER_STACKS_JUPYTER_CMD=notebook"], "notebook"),
],
)
def test_start_notebook(container, http_client, env, expected_server):
Expand Down Expand Up @@ -109,7 +109,7 @@ def test_server_extensions_start(container, http_client, expected_server):
LOGGER.info(f"Checking that server extensions start when using jupyter {expected_server}")
c = container.run(
tty=True,
command=["start-notebook.sh"],
command=["start-notebook.py"],
)
resp = http_client.get("http://localhost:8888")
logs = c.logs(stdout=True).decode("utf-8")
Expand Down

0 comments on commit f82761c

Please sign in to comment.