summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorpgjones <philip.graham.jones@googlemail.com>2017-08-26 14:12:44 +0100
committerpgjones <philip.graham.jones@googlemail.com>2017-08-26 14:15:29 +0100
commit3031a8ab33a215b0a1543a30d3cea1f7b1965423 (patch)
treed09b0ab3c2b26a0774fcf944a16ecd0aa1dcb59c /.travis.yml
parent18aeb576c74a7e8fa4745f2f8f686499c3588321 (diff)
downloadjsonschema-3031a8ab33a215b0a1543a30d3cea1f7b1965423.tar.gz
Improve travis and tox build
This will hopefully add Python 3.3, 3.4, and 3.6 testing as well as simplify the travis management via the tox-travis tool.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml17
1 files changed, 8 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index e1d4ee9..be4603c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,13 @@
language: python
-sudo: false
-addons:
- apt:
- sources:
- - deadsnakes
- packages:
- - python3.5
python:
- - "2.7"
+ - "2.7"
+ - "3.3"
+ - "3.4"
+ - "3.5"
+ - "3.6"
+ - "pypy"
install:
- - pip install tox
+ - pip install tox-travis
script:
- tox
+sudo: false