Skip to content

Commit 20a2cc2

Browse files
authored
Merge pull request #7085 from hugovk/fix-codecov-deletion-spree
Fix codecov after they deleted the Python package from PyPI
2 parents d1f4917 + 087a5f8 commit 20a2cc2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ test_script:
5252
#- '%PYTHON%\%EXECUTABLE% test-installed.py -v -s %TEST_OPTIONS%' TODO TEST_OPTIONS with pytest?
5353

5454
after_test:
55-
- python -m pip install codecov
56-
- codecov --file coverage.xml --name %PYTHON% --flags AppVeyor
55+
- curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
56+
- .\codecov.exe --file coverage.xml --name %PYTHON% --flags AppVeyor
5757

5858
matrix:
5959
fast_finish: true

.ci/after_success.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# gather the coverage data
4-
python3 -m pip install codecov
4+
python3 -m pip install coverage
55
if [[ $MATRIX_DOCKER ]]; then
66
python3 -m coverage xml --ignore-errors
77
else

0 commit comments

Comments
 (0)