[1bd245]: / .travis.yml

Download this file

20 lines (19 with data), 368 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
sudo: false
os:
- linux
- osx
matrix:
allow_failures:
- os: osx
language: python
python:
- 2.7
install: # command to install dependencies
- pip install -r requirements.txt
- python setup.py develop
script: # command to run tests
- py.test --cov=./segmentator
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false