Add Travis CI control file.

This commit is contained in:
Dave Shawley 2016-02-28 09:00:31 -05:00
parent 0c972ce6c2
commit 31daef908d

14
.travis.yml Normal file
View file

@ -0,0 +1,14 @@
language: python
python:
- 2.7
- 3.4
- 3.5
before_install:
- pip install nose coverage codecov
- pip install -r requires/testing.txt
install:
- pip install -e .
script: nosetests --with-coverage
after_success:
- codecov
sudo: false