2016-01-05 09:39:28 +00:00
|
|
|
language: python
|
|
|
|
sudo: false
|
|
|
|
cache: pip
|
|
|
|
before_install:
|
|
|
|
- pip install codecov
|
2016-01-05 11:12:33 +00:00
|
|
|
# install dependencies
|
|
|
|
install:
|
|
|
|
- pip install --user -r requirements.txt
|
2016-01-05 09:39:28 +00:00
|
|
|
after_success:
|
|
|
|
- codecov
|
|
|
|
# command to run tests
|
|
|
|
script:
|
|
|
|
- tox
|