Skip TestPyCacheDir.test_sys_pycache_prefix_integration on Windows + Python 3.9
Related to #9298
This commit is contained in:
parent
3dc17f1c3b
commit
bd897513f2
|
@ -1729,6 +1729,10 @@ class TestPyCacheDir:
|
|||
@pytest.mark.skipif(
|
||||
sys.version_info < (3, 8), reason="pycache_prefix not available in py<38"
|
||||
)
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info[:2] == (3, 9) and sys.platform.startswith("win"),
|
||||
reason="#9298",
|
||||
)
|
||||
def test_sys_pycache_prefix_integration(
|
||||
self, tmp_path, monkeypatch, pytester: Pytester
|
||||
) -> None:
|
||||
|
|
Loading…
Reference in New Issue