Merge pull request #9319 from nicoddemus/skip-test-prefix-integration-3.9
This commit is contained in:
commit
cd49075ad7
|
@ -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