From 477fcca1c0789dcd7b51e410c255777e56e02788 Mon Sep 17 00:00:00 2001 From: Cyril Roelandt Date: Wed, 7 Oct 2015 10:55:25 +0200 Subject: [PATCH] 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 --- tox.ini | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tox.ini b/tox.ini index d78cabd25af..8f13b7fbd3a 100644 --- a/tox.ini +++ b/tox.ini @@ -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}