summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorOmer Katz <omer.drow@gmail.com>2014-10-05 10:59:39 +0300
committerOmer Katz <omer.drow@gmail.com>2014-10-05 10:59:39 +0300
commit2497b47158e8d8ddda120231599e1549505f3efd (patch)
treeced41e03d690ae196ce6abaaea8f2fb4e387c4e5 /.travis.yml
parente4da658a5dc9f68d3386017ffdcc8e07d22b51a3 (diff)
downloadpython-json-patch-2497b47158e8d8ddda120231599e1549505f3efd.tar.gz
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.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 9473cc9..94f1e7b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,11 +4,13 @@ python:
- "2.7"
- "3.2"
- "3.3"
+ - "3.4"
- "pypy"
+ - "pypy3"
install:
- - pip install -r requirements.txt
- - pip install coveralls --use-mirrors
+ - travis_retry pip install -r requirements.txt
+ - travis_retry pip install coveralls
script:
- coverage run --source=jsonpatch tests.py