Add the functional-py34 and dsvm-functional-py34 targets to tox.ini

This will allow us to run the functional tests on the gates using Python 3.

Change-Id: I218c73398c6ed6cff776b65a66cb9336219cba77
Partial-Bug: #1500400
This commit is contained in:
Cyril Roelandt 2015-10-07 10:55:25 +02:00
parent e7675a8af5
commit 477fcca1c0
1 changed files with 13 additions and 0 deletions

13
tox.ini
View File

@ -48,6 +48,12 @@ deps =
{[testenv]deps}
-r{toxinidir}/neutron/tests/functional/requirements.txt
[testenv:functional-py34]
basepython = python3.4
setenv = {[testenv:functional]setenv}
deps =
{[testenv:functional]deps}
[testenv:dsvm-functional]
basepython = python2.7
setenv = {[testenv:functional]setenv}
@ -56,6 +62,13 @@ sitepackages=True
deps =
{[testenv:functional]deps}
[testenv:dsvm-functional-py34]
basepython = python3.4
setenv = {[testenv:dsvm-functional]setenv}
sitepackages={[testenv:dsvm-functional]sitepackages}
deps =
{[testenv:dsvm-functional]deps}
[testenv:fullstack]
setenv = {[testenv]setenv}
{[testenv:common]setenv}