From bbd8fafbf83c374c70308c17f10228221068d254 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Thu, 31 Aug 2017 12:03:23 -0500 Subject: Add Python 3.5 support Python 2.7 will be supported until 2020[1]. This changes helps to prepares the transition to the transition to Python 3.x and those systems which not support other versions. [1] https://hg.python.org/peps/rev/76d43e52d978 Change-Id: Ic2847e907e29d565c89b0448135393f923de20e3 Signed-off-by: Victor Morales Issue-Id: MULTICLOUD-83 --- newton/tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newton/tox.ini') diff --git a/newton/tox.ini b/newton/tox.ini index 4e15a2e7..ee15e4b0 100644 --- a/newton/tox.ini +++ b/newton/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27 +envlist = py27,py35 skipsdist = true [tox:jenkins] @@ -8,5 +8,5 @@ downloadcache = ~/cache/pip [testenv] deps = -r{toxinidir}/requirements.txt commands = coverage run --branch manage.py test newton - coverage html --omit="*test*,*__init__.py" -d htmlcov + coverage html --omit=".tox*,*test*,*__init__.py" -d htmlcov -- cgit 1.2.3-korg