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