diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-15 20:32:18 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-15 20:32:18 -0400 |
commit | 49a78b0878bdbaf1e891bdb8228c741509149963 (patch) | |
tree | a99f6a4e3e2d743b61470e5763e1e9c9b303def9 | |
parent | 61c38b33595b6aa4cbeced4b96de261bc97c8ee8 (diff) | |
download | python-coveragepy-git-49a78b0878bdbaf1e891bdb8228c741509149963.tar.gz |
Codecov on Jenkins
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 2f33ba70..628f637d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,10 +14,11 @@ env: - TOXENV=py33 - TOXENV=py34 - TOXENV=pypy + - TOXENV=py27 COVERAGE_COVERAGE=yes install: - - pip install -r requirements/tox.pip + - pip install -r requirements/tox.pip codecov script: - tox - - .tox/$TOXENV/bin/coverage debug sys + - if [ $COVERAGE_COVERAGE == 'yes' ]; then codecov; fi |