Skip to content

Commit

Permalink
Try to support pypy and run doctest only on 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquev6 committed Apr 22, 2015
1 parent 8bbaf40 commit 80c3954
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
@@ -1,15 +1,16 @@
language: python
python:
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- 2.7
- 3.4
- pypy
- pypy3
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run "--include=LowVoltage/*" setup.py test
- python setup.py build_sphinx --builder=doctest
- echo "TRAVIS_PYTHON_VERSION=$TRAVIS_PYTHON_VERSION"
- if [ "v$TRAVIS_PYTHON_VERSION" == "v2.7" ]; then python setup.py build_sphinx --builder=doctest; fi
after_success:
- coveralls
deploy:
Expand Down

0 comments on commit 80c3954

Please sign in to comment.