We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d1f4917 + 087a5f8 commit 20a2cc2Copy full SHA for 20a2cc2
.appveyor.yml
@@ -52,8 +52,8 @@ test_script:
52
#- '%PYTHON%\%EXECUTABLE% test-installed.py -v -s %TEST_OPTIONS%' TODO TEST_OPTIONS with pytest?
53
54
after_test:
55
-- python -m pip install codecov
56
-- codecov --file coverage.xml --name %PYTHON% --flags AppVeyor
+- curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
+- .\codecov.exe --file coverage.xml --name %PYTHON% --flags AppVeyor
57
58
matrix:
59
fast_finish: true
.ci/after_success.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
# gather the coverage data
4
-python3 -m pip install codecov
+python3 -m pip install coverage
5
if [[ $MATRIX_DOCKER ]]; then
6
python3 -m coverage xml --ignore-errors
7
else
0 commit comments