Tox: Remove fullstack env, keep only dsvm-fullstack

In the functional tests we have 'functional' and 'dsvm-functional'
venvs. The difference is that dsvm-functional requires can run
rootwrap commands on the machine. In the fullstack context,
not running rootwrap commands doesn't make sense, as fullstack
tests are explicitly and solely integration tests.

Change-Id: I1e85537d137a1b773198facbb835a65b6d0ce9b4
This commit is contained in:
Assaf Muller 2015-12-05 17:17:13 -05:00
parent 525420bf6f
commit dd5a8e4166
1 changed files with 2 additions and 8 deletions

10
tox.ini
View File

@ -74,17 +74,11 @@ sitepackages={[testenv:dsvm-functional]sitepackages}
deps =
{[testenv:dsvm-functional]deps}
[testenv:fullstack]
[testenv:dsvm-fullstack]
setenv = {[testenv]setenv}
{[testenv:common]setenv}
OS_TEST_PATH=./neutron/tests/fullstack
deps =
{[testenv]deps}
-r{toxinidir}/neutron/tests/functional/requirements.txt
[testenv:dsvm-fullstack]
setenv = {[testenv:fullstack]setenv}
{[testenv:dsvm]setenv}
OS_TEST_PATH=./neutron/tests/fullstack
sitepackages=True
deps =
{[testenv:functional]deps}