Removed lockutils-wrapper from tox targets

This wrapper was needed until neutron BaseTestCase started using
ExternalLockFixture. Now it can be safely removed.

Change-Id: I2a82504ad19f6daddd24a3c2254e8feefc9399ca
This commit is contained in:
Ihar Hrachyshka 2015-02-27 16:43:48 +01:00
parent 93b1f892f8
commit 1ad5beb7c5
2 changed files with 3 additions and 3 deletions

View File

@ -3,4 +3,4 @@
TESTRARGS=$1
exec 3>&1
status=$(exec 4>&1 >&3; ( lockutils-wrapper python setup.py testr --slowest --testr-args="--subunit $TESTRARGS"; echo $? >&4 ) | $(dirname $0)/subunit-trace.py -f) && exit $status
status=$(exec 4>&1 >&3; (python setup.py testr --slowest --testr-args="--subunit $TESTRARGS"; echo $? >&4 ) | $(dirname $0)/subunit-trace.py -f) && exit $status

View File

@ -28,7 +28,7 @@ setenv = VIRTUAL_ENV={envdir}
[testenv:functional]
setenv = OS_TEST_PATH=./neutron_fwaas/tests/functional
commands =
lockutils-wrapper python setup.py testr --slowest --testr-args='{posargs}'
python setup.py testr --slowest --testr-args='{posargs}'
[testenv:dsvm-functional]
setenv = OS_TEST_PATH=./neutron_fwaas/tests/functional
@ -37,7 +37,7 @@ setenv = OS_TEST_PATH=./neutron_fwaas/tests/functional
OS_FAIL_ON_MISSING_DEPS=1
sitepackages=True
commands =
lockutils-wrapper python setup.py testr --slowest --testr-args='{posargs}'
python setup.py testr --slowest --testr-args='{posargs}'
[tox:jenkins]
sitepackages = True