Skip to content
Snippets Groups Projects
Commit 42e49a28 authored by Sir Isaac Newton's avatar Sir Isaac Newton
Browse files

Old coverage for old Python

parent a9bc70fb
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,10 @@ python:
- pypy3
install:
- pip install scrutinizer-ocular coverage webtest httmock requests
- pip install scrutinizer-ocular webtest httmock requests
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
before_script:
- ./setup.py install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment