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.
1 parent d5e6792 commit a6dad3dCopy full SHA for a6dad3d
.travis.yml
@@ -84,13 +84,16 @@ script:
84
- "find ${TRAVIS_BUILD_DIR}/.tox -name 'log' -o -name '__pycache__' -type d | xargs -I {} rm -rf {}"
85
86
after_success:
87
- - pip install codecov
88
- - coverage combine
89
- - coverage xml
90
- - coverage report -m --skip-covered
91
- |
92
- set -x
93
- codecov_flags=${TOXENV//./}
94
- codecov_flags=${codecov_flags//-/ }
95
- codecov --required -X search gcov pycov -f coverage.xml --flags $codecov_flags
+ set -ex
+ if [[ "$TOXENV%-checkqa" != "$TOXENV" ]]; then
+ pip install codecov
+ coverage combine
+ coverage xml
+ coverage report -m --skip-covered
+
+ codecov_flags=${TOXENV//./}
96
+ codecov_flags=${codecov_flags//-/ }
97
+ codecov --required -X search gcov pycov -f coverage.xml --flags $codecov_flags
98
+ fi
99
set +x
0 commit comments