summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorTristan Seligmann <mithrandi@mithrandi.net>2017-07-06 16:03:18 +0200
committerTristan Seligmann <mithrandi@mithrandi.net>2017-07-06 16:05:42 +0200
commit49b6c74b662471b6849442becf5a165348376420 (patch)
tree00037ee7c01a700c8a8e182b6827aaf304fe46a9 /.travis.yml
parent313e1b34176210a178c404cfbed6f0350b5e92d1 (diff)
downloadpython-json-patch-49b6c74b662471b6849442becf5a165348376420.tar.gz
Tolerate Hypothesis being missing (no 2.6, 3.2, or 3.3 support).
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 473716c..c95cbfc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,8 @@ python:
- "pypy3"
install:
- - travis_retry pip install -r requirements.txt -r requirements-dev.txt
+ - travis_retry pip install -r requirements.txt
+ - if [ "$TRAVIS_PYTHON_VERSION" != "2.6" -a "$TRAVIS_PYTHON_VERSION" != "3.2" -a "$TRAVIS_PYTHON_VERSION" != "3.3" ]; then travis_retry pip install hypothesis; fi
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install 'coverage<4'; fi
- travis_retry pip install coveralls