Merge pull request #9319 from nicoddemus/skip-test-prefix-integration-3.9

This commit is contained in:
Bruno Oliveira 2021-11-19 12:23:34 -03:00 committed by GitHub
commit cd49075ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: