stocproc/.travis.yml
Richard Hartmann 336f59f46b Update .travis.yml
fix typo
2016-09-20 23:28:46 +02:00

29 lines
481 B
YAML

language: python
notifications:
email: false
python:
- '2.7'
- '3.4'
- '3.5'
before_install:
- sudo apt-get install build-essential
- sudo apt-get install libatlas-base-dev
- which python
- python --version
install:
- pip install pytest pytest-cov
- pip install python-coveralls
- pip install cython
- pip install numpy scipy
- pip freeze
- python setup.py build_ext --inplace
script:
- py.test tests/ -v --cov=stocproc --cov-report term-missing
after_success:
- coveralls