Added Python 3.4 and PyPy3 to the build matrix.

Also used travis_retry in order to avoid build failures due to networking problems and removed --use-mirrors since it's deprecated.
This commit is contained in:
Omer Katz
2014-10-05 10:59:39 +03:00
parent e4da658a5d
commit 2497b47158

View File

@@ -4,11 +4,13 @@ python:
- "2.7" - "2.7"
- "3.2" - "3.2"
- "3.3" - "3.3"
- "3.4"
- "pypy" - "pypy"
- "pypy3"
install: install:
- pip install -r requirements.txt - travis_retry pip install -r requirements.txt
- pip install coveralls --use-mirrors - travis_retry pip install coveralls
script: script:
- coverage run --source=jsonpatch tests.py - coverage run --source=jsonpatch tests.py