Skip to content

Commit 5149aac

Browse files
authored
Merge pull request #983 from pypa/appveyor-debug-failures
Debug Appveyor failures
2 parents ab13f7a + 55eb1ca commit 5149aac

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ jobs:
4848
arch: s390x
4949
env: PYTHON=python
5050

51-
install: $PYTHON -m pip install -e ".[dev]" pytest-custom-exit-code
51+
install:
52+
- $PYTHON -m pip install -U pip
53+
- $PYTHON -m pip install -e ".[dev]" pytest-custom-exit-code
5254

5355
script: $PYTHON ./bin/run_tests.py

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ init:
1818
if (-not ($BRANCH -eq 'main' -or $BRANCH.ToLower().StartsWith('appveyor-'))) {
1919
$env:PYTEST_ADDOPTS='-k "unit_test or test_0_basic" --suppress-no-test-exit-code'
2020
}
21+
python -m pip install -U pip
2122
2223
install: python -m pip install -e ".[dev]" pytest-custom-exit-code
2324

test/test_dependency_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def test_dependency_constraints_file(tmp_path, build_frontend_env):
119119
"pip": "20.0.2",
120120
"setuptools": "53.0.0",
121121
"wheel": "0.34.2",
122-
"virtualenv": "20.0.35",
122+
"virtualenv": "20.11.2",
123123
}
124124

125125
constraints_file = tmp_path / "constraints file.txt"

0 commit comments

Comments
 (0)