diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 153f89b..b1a8402 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ before_install: # command to install dependencies install: - pip install -r requirements/requirements-common.txt + - pip install codecov - python setup.py develop # command to run tests and coverage @@ -25,9 +26,13 @@ script: after_success: - coverage combine - coverage report + - codecov + +sudo: + required dist: - precise + trusty addons: firefox: "46.0" |