Skip to content

Commit

Permalink
Merge pull request #9319 from nicoddemus/skip-test-prefix-integration…
Browse files Browse the repository at this point in the history
…-3.9
  • Loading branch information
nicoddemus authored Nov 19, 2021
2 parents 3dc17f1 + bd89751 commit cd49075
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions testing/test_assertrewrite.py
Original file line number Diff line number Diff line change
Expand Up @@ -1729,6 +1729,10 @@ def test_get_cache_dir(self, monkeypatch, prefix, source, expected) -> None:
@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:
Expand Down

0 comments on commit cd49075

Please sign in to comment.