Skip to content

Commit

Permalink
Testing more Python versions, fix coveralls
Browse files Browse the repository at this point in the history
Trying to test in more versions of Python. Also fail with reporting coverage to coveralls caused by cd to docs for doctests (probably).
  • Loading branch information
MarekSuchanek committed Feb 3, 2017
1 parent ca37059 commit c941367
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
language: python
python:
- '3.5'
- '3.6'
- 'nigthly'
install:
- python setup.py install
- pip install -r docs/requirements.txt
- pip install coveralls
script:
- python setup.py test
- cd docs && make doctest
- cd docs && make doctest && cd ..
after_success:
- coveralls

0 comments on commit c941367

Please sign in to comment.