diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-04-16 06:49:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-16 06:49:48 -0400 |
commit | a92f0023e015a82f8c875e7a90210e22aaf0174b (patch) | |
tree | 226399fbe907fcecd77fde17d1c9e6985e4e160c | |
parent | 2bfca8b7a9061e4fa9569cdcae3c841be4921e1a (diff) | |
parent | b1cd33194e2e51de8e4b7dde2e4cac8e5e9e9e32 (diff) | |
download | python-coveragepy-git-a92f0023e015a82f8c875e7a90210e22aaf0174b.tar.gz |
Merge pull request #790 from blueyed/travis
[WIP] ci: Travis: test with Python 3.8-dev
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index ac189e57..8b7840b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ python: - '3.5' - '3.6' - '3.7' + - '3.8-dev' - 'pypy2.7-6.0' - 'pypy3.5-6.0' @@ -24,6 +25,11 @@ install: script: - tox - - if [[ $COVERAGE_COVERAGE == 'yes' ]]; then python igor.py combine_html; fi - - if [[ $COVERAGE_COVERAGE == 'yes' ]]; then pip install codecov; fi - - if [[ $COVERAGE_COVERAGE == 'yes' ]]; then codecov -X gcov --file coverage.xml; fi + +after_script: + - | + if [[ $COVERAGE_COVERAGE == 'yes' ]]; then + python igor.py combine_html + pip install codecov + codecov -X gcov --file coverage.xml + fi |