From 667e2915015e14edabf7c6d0b90f9d31529601fb Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Sun, 25 Dec 2016 18:08:00 +0000 Subject: [PATCH] tox.ini: add py36 to env list Running `tox` locally will run tests on 2.7, 3.5 and 3.6, by default; in any of these is not found, it will be skipped. --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9118d2697..d9d015c10 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [tox] -envlist = py27, py35 +envlist = py27, py35, py36 +skip_missing_interpreters = true [testenv] basepython = @@ -7,6 +8,7 @@ basepython = pypy: {env:TOXPYTHON:pypy} py34: {env:TOXPYTHON:python3.4} py35: {env:TOXPYTHON:python3.5} + py36: {env:TOXPYTHON:python3.6} deps = pytest -rrequirements.txt