aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 78c77db..67695c8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,10 +8,16 @@ python:
- "3.5"
- "pypy"
- "pypy3"
+before_install:
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install coverage==3.7.1; fi
+ - pip install codecov
install:
- pip install six
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
- ./ci_tools/retry.sh python updatezinfo.py
script:
- - python setup.py test
+ - coverage run --omit=setup.py,dateutil/test/* setup.py test
+after_success:
+ - codecov
+
sudo: false