From 3031a8ab33a215b0a1543a30d3cea1f7b1965423 Mon Sep 17 00:00:00 2001 From: pgjones Date: Sat, 26 Aug 2017 14:12:44 +0100 Subject: [PATCH] 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. --- .travis.yml | 17 ++++++++--------- tox.ini | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index e1d4ee978..be4603c9e 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 diff --git a/tox.ini b/tox.ini index 28d8995a1..9baa28e60 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,35,py}, docs, style +envlist = py{27,33,34,35,36,py}, docs, style [testenv]