Use Coverage==3.7.1 for Python 3.2

This commit is contained in:
Hernan Grecco
2015-10-12 19:53:59 -03:00
parent 2c67bbac77
commit b869d7c6ec

View File

@@ -43,7 +43,8 @@ install:
- if [ $TRAVIS_PYTHON_VERSION == '2.6' ]; then pip install unittest2; fi
- if [ $UNCERTAINTIES == 'Y' ]; then pip install uncertainties; fi
- if [ $NUMPY_VERSION != '0' ]; then conda install -c mwcraig --yes numpy==$NUMPY_VERSION; fi
- pip install coverage coveralls
- if [ $TRAVIS_PYTHON_VERSION == '3.2' ]; then pip install coverage==3.7.1; else pip install coverage; fi
- pip install coveralls
script:
- if [ $TRAVIS_PYTHON_VERSION == '2.6' ]; then coverage run -p --source=pint --omit="*test*","*compat*" setup.py test; fi