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 ad2fef9 commit bcd6562Copy full SHA for bcd6562
.travis.yml
@@ -36,9 +36,14 @@ script:
36
- tox
37
38
after_success:
39
- - bash <(curl -s https://codecov.io/bash) -f coverage.xml -X fix
40
- # coveralls only support one env.
41
- - if [ "$TOXENV" = py37-cov ]; then pip install coveralls; coveralls; fi
+ - |
+ if [[ "${TOXENV%-cov}" != $TOXENV ]]; then
+ bash <(curl -s https://codecov.io/bash) -f coverage.xml -X fix
42
+
43
+ pip install coveralls
44
+ COVERALLS_PARALLEL=true coveralls
45
+ fi
46
47
notifications:
48
email: false
49
+ webhooks: https://coveralls.io/webhook
0 commit comments