IMPROVE explicitly install dependecies on travis

This commit is contained in:
Patrick Kanzler 2016-01-05 12:12:33 +01:00
parent 8b8ab80e5f
commit 3d61445e2c
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@ sudo: false
cache: pip cache: pip
before_install: before_install:
- pip install codecov - pip install codecov
# install dependencies
install:
- pip install --user -r requirements.txt
after_success: after_success:
- codecov - codecov
# command to run tests # command to run tests