From cdc81451c3f187e8183f2e5b67be2e648501f979 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 10 Nov 2022 20:52:21 -0600 Subject: [PATCH] Fix handling of jupyter core warning (#335) --- tests/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index ff267e4a..b360f8a6 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1 +1,4 @@ +import os + +os.environ["JUPYTER_PLATFORM_DIRS"] = "1" pytest_plugins = ["jupyterlab_server.pytest_plugin"]