From 70b7b69a4cb5c1fd178676b172e030d5635969be Mon Sep 17 00:00:00 2001 From: Liam Young Date: Fri, 27 Jul 2018 07:19:59 +0000 Subject: [PATCH] Update tox.ini for py36 --- tox.ini | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 744d2df..cf7da0e 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ # within individual charm repos. [tox] skipsdist = True -envlist = pep8,py34,py35 +envlist = pep8,py34,py35,py36 skip_missing_interpreters = True [testenv] @@ -41,8 +41,13 @@ basepython = python3.5 deps = -r{toxinidir}/test-requirements.txt commands = ostestr {posargs} +[testenv:py36] +basepython = python3.6 +deps = -r{toxinidir}/test-requirements.txt +commands = ostestr {posargs} + [testenv:pep8] -basepython = python3.5 +basepython = python3 deps = -r{toxinidir}/test-requirements.txt commands = flake8 {posargs} src unit_tests