binfootprint/.travis.yml

27 lines
350 B
YAML
Raw Normal View History

2016-09-21 21:48:23 +02:00
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
2016-09-21 22:05:05 +02:00
- pwd
- ls
2016-09-21 21:48:23 +02:00
script:
- py.test tests/ -v --cov=binfootprint --cov-report term-missing
after_success:
2016-09-21 22:33:38 +02:00
- bash <(curl -s https://codecov.io/bash)