File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
atest/acceptance/01_server
src/JupyterLibrary/keywords Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Start three servers
2727 ${log2 } = Get Process Result ${nb2 } stderr=${True }
2828 Should Contain ${log2 } The Jupyter Notebook is running msg=Log should contain expected status message
2929 ${log3 } = Get Process Result ${nb3 } stderr=${True }
30- Should Not Contain ${log3 } The Jupyter Notebook is running msg=Unawaited server log should not contain expected status message
30+ Should Contain ${log2 } The Jupyter Notebook is running msg=Log should contain expected status message
3131 ${terminated } = Terminate All Jupyter Servers
3232 Should be equal as integers ${terminated } 0 msg=No servers should have been terminated
3333
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ def start_new_jupyter_server(
6060 args = args or self .build_jupyter_server_arguments (port , base_url , token )
6161
6262 handle = plib .start_process (command , * args , ** config )
63+ BuiltIn ().sleep ("5s" )
64+ plib .process_should_be_running (handle )
6365
6466 self ._handles += [handle ]
6567 self ._tmpdirs [handle ] = tmpdir
You can’t perform that action at this time.
0 commit comments