1 --- jupyter_core-5.7.2/tests/test_paths.py.orig
2 +++ jupyter_core-5.7.2/tests/test_paths.py
4 assert path[-2:] == system_path
7 +@pytest.mark.skip(reason="always fails: https://github.com/jupyter/jupyter_core/issues/231")
8 def test_jupyter_path_user_site():
9 with patch.object(site, "ENABLE_USER_SITE", True):
15 +@pytest.mark.skip(reason="always fails: https://github.com/jupyter/jupyter_core/issues/231")
16 def test_jupyter_path_no_user_site():
17 with patch.object(site, "ENABLE_USER_SITE", False):
20 assert path[1] == paths.ENV_JUPYTER_PATH[0]
23 +@pytest.mark.skip(reason="always fails: https://github.com/jupyter/jupyter_core/issues/231")
24 def test_jupyter_path_prefer_env():