We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe7533e + 2ae697d commit d06f8a9Copy full SHA for d06f8a9
test/test_installation.py
@@ -4,11 +4,19 @@
4
import ast
5
import os
6
import subprocess
7
+import sys
8
+
9
+import pytest
10
11
from test.lib import TestBase, VirtualEnvironment, with_rw_directory
12
13
14
class TestInstallation(TestBase):
15
+ @pytest.mark.xfail(
16
+ sys.platform == "cygwin" and "CI" in os.environ,
17
+ reason="Trouble with pip on Cygwin CI, see issue #2004",
18
+ raises=subprocess.CalledProcessError,
19
+ )
20
@with_rw_directory
21
def test_installation(self, rw_dir):
22
venv = self._set_up_venv(rw_dir)
0 commit comments