Skip to content

Commit

Permalink
Skip pip upgrade from source tests on where they're failing.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Oct 20, 2021
1 parent ad92a53 commit 6c137ff
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setuptools/tests/test_virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import os
import sys
import itertools

import pathlib

import pytest
Expand Down Expand Up @@ -79,10 +78,14 @@ def skip_network(param):
reason="pypa/setuptools#2599",
)

issue2764 = pytest.mark.skip(
reason="pypa/setuptools#2764",
)

network_versions = [
mark('pip==9.0.3', issue2599),
mark('pip==10.0.1', issue2599),
mark('pip==18.1', issue2599),
mark('pip==9.0.3', issue2599, issue2764),
mark('pip==10.0.1', issue2599, issue2764),
mark('pip==18.1', issue2599, issue2764),
mark('pip==19.3.1', pytest.mark.xfail(reason='pypa/pip#6599')),
'pip==20.0.2',
'https://github.com/pypa/pip/archive/main.zip',
Expand Down

0 comments on commit 6c137ff

Please sign in to comment.