binfootprint/.travis.yml
Richard Hartmann 2f53870fe5 Update .travis.yml
removed coverall from travis build script
2016-09-21 22:42:15 +02:00

26 lines
350 B
YAML

language: python
notifications:
email: false
python:
- '2.7'
- '3.4'
- '3.5'
before_install:
- which python
- python --version
install:
- pip install numpy
- pip install pytest pytest-cov
- pip freeze
- pwd
- ls
script:
- py.test tests/ -v --cov=binfootprint --cov-report term-missing
after_success:
- bash <(curl -s https://codecov.io/bash)