Skip to content

Commit

Permalink
fix python 3.2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
snopoke committed Jul 27, 2018
1 parent 1310c0c commit 320deb5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Expand Up @@ -8,7 +8,10 @@ python:
install:
- "pip install ."
- "pip install pytest"
- "pip install coverage coveralls"
- "pip install coveralls"
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi
script: coverage run setup.py test
after_success:
- coveralls

0 comments on commit 320deb5

Please sign in to comment.