From 4522ff53242d9b001dafce3a2bcd69df6009341a Mon Sep 17 00:00:00 2001 From: Jason Meridth Date: Tue, 10 May 2016 15:22:24 -0500 Subject: [PATCH] Add Python 3.5 to tox.ini for test runs - also added skip-missing-interpreters option http://tox.readthedocs.io/en/latest/config.html#confval-skip_missing_interpreters=BOOL Change-Id: I461677ac11e59e7931931b3f5993bbcdf1192369 --- tox.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 60a3075..cd65792 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [tox] -envlist=pep8,py27,py34 +envlist=pep8,py27,py34,py35 +skip_missing_interpreters=true [testenv] setenv=VIRTUAL_ENV={envdir} @@ -11,6 +12,9 @@ commands=nosetests [testenv:py34] commands=nosetests +[testenv:py35] +commands=nosetests + [testenv:pep8] commands=flake8