Skip to content

Commit c3da370

Browse files
committed
Skip tests on Linux where they're failing
1 parent ad92a53 commit c3da370

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

setuptools/tests/test_virtualenv.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sys
44
import itertools
5-
5+
import platform
66
import pathlib
77

88
import pytest
@@ -79,10 +79,14 @@ def skip_network(param):
7979
reason="pypa/setuptools#2599",
8080
)
8181

82+
issue2764 = pytest.mark.skip(
83+
reason="pypa/setuptools#2764",
84+
)
85+
8286
network_versions = [
83-
mark('pip==9.0.3', issue2599),
84-
mark('pip==10.0.1', issue2599),
85-
mark('pip==18.1', issue2599),
87+
mark('pip==9.0.3', issue2599, issue2764),
88+
mark('pip==10.0.1', issue2599, issue2764),
89+
mark('pip==18.1', issue2599, issue2764),
8690
mark('pip==19.3.1', pytest.mark.xfail(reason='pypa/pip#6599')),
8791
'pip==20.0.2',
8892
'https://github.com/pypa/pip/archive/main.zip',

0 commit comments

Comments
 (0)