File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ if [ "$LINT" ]; then
115
115
fi
116
116
117
117
if [ " $COVERAGE " ]; then
118
- pip install coverage pytest-cov codecov
118
+ pip install coverage pytest-cov
119
119
fi
120
120
121
121
echo
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
if [ -z " $COVERAGE " ]; then
4
- echo " no upload of coverage is needed "
4
+ echo " coverage is not selected for this build "
5
5
exit 0
6
6
fi
7
7
8
8
source activate pandas
9
9
10
- codecov --file -c -F single /tmp/cov-single.xml
11
- codecov --file -c -F multiple /tmp/cov-multiple.xml
10
+ echo " uploading coverage"
11
+ 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
You can’t perform that action at this time.
0 commit comments