diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-03-10 14:29:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-10 14:29:37 -0400 |
commit | b9438ee33cc847938acd06d81b798c5faeeb596c (patch) | |
tree | 2887e319bcca8800a3db071de4ef4a39aca3bf6c | |
parent | b140512e4205664d37452d3f4c7ca4e0daf078e8 (diff) | |
parent | 2cab54c755607dccdf2cf29711b72f8bf42c9cf5 (diff) | |
download | python-coveragepy-git-b9438ee33cc847938acd06d81b798c5faeeb596c.tar.gz |
Merge pull request #776 from blueyed/travis-xenial
ci: Travis: use dist=xenial
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index cbdf22ac..ac189e57 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ # Tell Travis what to do # https://travis-ci.com/nedbat/coveragepy +dist: xenial language: python cache: pip @@ -9,8 +10,8 @@ python: - '3.5' - '3.6' - '3.7' - - 'pypy' - - 'pypy3.5' + - 'pypy2.7-6.0' + - 'pypy3.5-6.0' env: matrix: @@ -23,7 +24,6 @@ install: script: - tox - - pip freeze - 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 |