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:
parent
93b1f892f8
commit
1ad5beb7c5
@ -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
|
||||
|
4
tox.ini
4
tox.ini
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user