We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3e3cfe commit abf1697Copy full SHA for abf1697
ci/install_travis.sh
@@ -115,7 +115,7 @@ if [ "$LINT" ]; then
115
fi
116
117
if [ "$COVERAGE" ]; then
118
- pip install coverage pytest-cov codecov
+ pip install coverage pytest-cov
119
120
121
echo
ci/upload_coverage.sh
@@ -1,11 +1,12 @@
1
#!/bin/bash
2
3
if [ -z "$COVERAGE" ]; then
4
- echo "no upload of coverage is needed"
+ echo "coverage is not selected for this build"
5
exit 0
6
7
8
source activate pandas
9
10
-codecov --file -c -F single /tmp/cov-single.xml
11
-codecov --file -c -F multiple /tmp/cov-multiple.xml
+echo "uploading coverage"
+bash <(curl -s https://codecov.io/bash) -Z -c -F single -f /tmp/cov-single.xml
12
+bash <(curl -s https://codecov.io/bash) -Z -c -F multiple -f /tmp/cov-multiple.xml
0 commit comments