File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ Feature: Docker commands in new projects
6161
6262 Scenario : Execute docker jupyter lab target
6363 Given I have executed the kedro command "docker build"
64- When I execute the kedro command "docker jupyter lab"
64+ When I execute the kedro command "docker jupyter lab --IdentityProvider.token=test-token-abc123 "
6565 Then Jupyter Server should run on port 8888
6666
6767 Scenario : Execute docker jupyter lab target on custom port
6868 Given I have executed the kedro command "docker build"
69- When I execute the kedro command "docker jupyter lab --port 8899"
69+ When I execute the kedro command "docker jupyter lab --IdentityProvider.token=test-token-abc123 -- port 8899"
7070 Then Jupyter Server should run on port 8899
7171
7272 Scenario : Jupyter port already used
Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ def check_jupyter_nb_proc_on_port(
340340 command: Jupyter command message to check
341341 port: Port to check
342342 """
343- url = f"http://localhost:{ int (port )} "
343+ url = f"http://localhost:{ int (port )} ?token=test-token-abc123 "
344344 wait_for (
345345 func = _check_service_up ,
346346 expected_result = None ,
You can’t perform that action at this time.
0 commit comments