We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af0a722 commit 53fa0d4Copy full SHA for 53fa0d4
tests/acceptance/test_acceptance.py
@@ -7,8 +7,7 @@
7
8
HERE = Path(__file__).parent
9
OUTPUT = HERE.parent.parent / "build/robot"
10
-SERVER_INFO = None
11
-LAB_INFO = None
+JUPYTER_SERVER_INFO = None
12
13
try:
14
import jupyter_server
@@ -23,7 +22,9 @@ def test_robot():
23
22
24
env = dict(**os.environ)
25
26
- if SERVER_INFO is None:
+ # JUPYTER_LIBRARY_* env vars documentation:
+ # https://robotframework-jupyterlibrary.readthedocs.io/en/stable/LIMITS.html#notebookapp-vs-serverapp
27
+ if JUPYTER_SERVER_INFO is None:
28
env.update(
29
JUPYTER_LIBRARY_APP_COMMAND="jupyter-notebook",
30
JUPYTER_LIBRARY_APP="NotebookApp",
0 commit comments