binfootprint/.travis.yml

28 lines
351 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 install python-coveralls
- 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:
- coveralls