perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / jupyter_core / patches / 01-test-disable-failing.patch
blob748c3f647d1b8562a74b62320de37080aa7cb4e1
1 --- jupyter_core-5.7.2/tests/test_paths.py.orig
2 +++ jupyter_core-5.7.2/tests/test_paths.py
3 @@ -283,6 +283,7 @@
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):
10 path = jupyter_path()
11 @@ -301,6 +302,7 @@
12 assert p == v
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):
18 path = jupyter_path()
19 @@ -308,6 +310,7 @@
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():
25 with prefer_env:
26 path = jupyter_path()