Skip to content

Commit bd89751

Browse files
committed
Skip TestPyCacheDir.test_sys_pycache_prefix_integration on Windows + Python 3.9
Related to #9298
1 parent 3dc17f1 commit bd89751

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

testing/test_assertrewrite.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1729,6 +1729,10 @@ def test_get_cache_dir(self, monkeypatch, prefix, source, expected) -> None:
17291729
@pytest.mark.skipif(
17301730
sys.version_info < (3, 8), reason="pycache_prefix not available in py<38"
17311731
)
1732+
@pytest.mark.skipif(
1733+
sys.version_info[:2] == (3, 9) and sys.platform.startswith("win"),
1734+
reason="#9298",
1735+
)
17321736
def test_sys_pycache_prefix_integration(
17331737
self, tmp_path, monkeypatch, pytester: Pytester
17341738
) -> None:

0 commit comments

Comments
 (0)