diff options
-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 |