From 5becc80e44bb4cf345576eaf8bbfeddaed267ba6 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 5 Jan 2021 19:02:40 +0100 Subject: [PATCH] Unpin jupyter_server in the tests --- setup.py | 2 -- tests/conftest.py | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7255b032c..929b9c77d 100644 --- a/setup.py +++ b/setup.py @@ -99,8 +99,6 @@ "test": [ "ipywidgets", "mock", - # TODO: unpin - "jupyter_server~=1.0.1", "matplotlib", "pytest", "pytest-tornasync", diff --git a/tests/conftest.py b/tests/conftest.py index d19e0e3ac..c25539aab 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -7,6 +7,11 @@ BASE_DIR = os.path.dirname(__file__) +@pytest.fixture +def base_url(): + return "/" + + @pytest.fixture def notebook_directory(): return os.path.join(BASE_DIR, 'notebooks')