summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>2016-07-26 21:43:27 +0300
committerJason R. Coombs <jaraco@jaraco.com>2016-07-26 14:43:27 -0400
commit89dcecaa0bea44f9710745889b405b0bf40a8c38 (patch)
tree80704e657441b2101795c382380deb3fd7395aab /.travis.yml
parent2511742c2edf9a701b3dc1b1c5706dfde75267ae (diff)
downloadcherrypy-git-89dcecaa0bea44f9710745889b405b0bf40a8c38.tar.gz
Add testing against loosely supported Python versions in Travis (#1464)
* Add testing against loosely supported Python versions in Travis * Fix allow_failures syntax in Travis config * Fix allow_failures syntax in Travis config [2] * Fix allow_failures syntax in Travis config [3] * Split install and script sections to be more verbose
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 15 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 750a4692..f9cc0915 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,15 +2,27 @@ language: python
python:
- 2.6
- 2.7
+- 3.1
- 3.2
- 3.3
- 3.4
- 3.5
+- pypy
+- pypy3
+- nightly
+matrix:
+ allow_failures:
+ - python: 3.1
+ - python: pypy
+ - python: pypy3
+ - python: nightly
+
env:
- WEBTEST_INTERACTIVE=false
-script:
-- pip install -e .
-- nosetests
+
+install: pip install -e .
+script: nosetests
+
deploy:
provider: pypi
on: