Skip TestPyCacheDir.test_sys_pycache_prefix_integration on Windows + Python 3.9

Related to #9298
This commit is contained in:
Bruno Oliveira 2021-11-19 11:22:08 -03:00
parent 3dc17f1c3b
commit bd897513f2
1 changed files with 4 additions and 0 deletions

View File

@ -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: