Add python 3.6 for test in tox

This commit adds support for py36 in tox.ini by default. When tox
command is executed by developer it will run py36 tests.

Change-Id: I2363435eaab88ff2a67146c7239404518173c599
This commit is contained in:
akhiljain23 2018-10-04 13:14:07 +05:30 committed by Eric Kao
parent bb7f35f17a
commit acb7c5be12
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[tox]
minversion = 1.6
skipsdist = True
envlist = py35,py27,pep8,genpolicy
envlist = py36,py35,py27,pep8,genpolicy
[testenv]
usedevelop = True
@ -35,7 +35,7 @@ commands = {posargs}
basepython = python3
setenv =
PYTHON=coverage run --source congress --parallel-mode
commands =
commands =
coverage erase
find . -type f -name "*.pyc" -delete
stestr run '^(?!congress\.tests\.haht\.test_congress_haht.*){posargs}'