stocproc/.travis.yml
2016-09-20 16:21:50 +02:00

24 lines
No EOL
345 B
YAML

language: python
notifications:
email: false
python:
- '3.4'
- '3.5'
before_install:
- which python
- python --version
install:
- pip install pytest pytest-cov
- pip install python-coveralls
- pip freeze
- python setup.py build_ext --inplace
script:
- py.test tests/ -v --cov=progress --cov-report term-missing
after_success:
- coveralls