We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00417c5 commit e273400Copy full SHA for e273400
tests/integration/cli/commands/test_cache_prune.py
@@ -27,6 +27,7 @@
27
)
28
from pex.cli.commands.cache.du import DiskUsage
29
from pex.common import environment_as, safe_open
30
+from pex.os import WINDOWS
31
from pex.pep_503 import ProjectName
32
from pex.pex_info import PexInfo
33
from pex.pip.version import PipVersion, PipVersionValue
@@ -40,6 +41,15 @@
40
41
from typing import Iterable, Iterator, Optional
42
43
44
+pytestmark = pytest.mark.skipif(
45
+ WINDOWS,
46
+ reason=(
47
+ "These tests (in particular `test_nothing_prunable`) currently hang on Windows in CI "
48
+ "regularly."
49
+ ),
50
+)
51
+
52
53
@pytest.fixture(autouse=True)
54
def pex_root(tmpdir):
55
# type: (Tempdir) -> Iterator[str]
0 commit comments