Browse Source
According to Openstack summit session [1], stestr is maintained project to which all Openstack projects should migrate. Let's switch to stestr as other projects have already moved to it. [1] https://etherpad.openstack.org/p/YVR-python-pti Change-Id: I96c7c264dab04a7f52e2c77a1165ed51137bfae0changes/90/581590/2
7 changed files with 16 additions and 23 deletions
@ -0,0 +1,4 @@
|
||||
[DEFAULT] |
||||
test_path=${OS_TEST_PATH:-./designateclient/tests} |
||||
top_dir=./ |
||||
|
@ -1,10 +0,0 @@
|
||||
[DEFAULT] |
||||
test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \ |
||||
OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \ |
||||
OS_LOG_CAPTURE=${OS_LOG_CAPTURE:-1} \ |
||||
OS_DEBUG=${OS_DEBUG:-1} \ |
||||
OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-160} \ |
||||
${PYTHON:-python} -m subunit.run discover -t ./ ${OS_TEST_PATH:-./designateclient/tests} $LISTOPT $IDOPTION |
||||
|
||||
test_id_option=--load-list $IDFILE |
||||
test_list_option=--list |
@ -1,6 +0,0 @@
|
||||
#! /bin/sh |
||||
|
||||
TESTRARGS=$1 |
||||
|
||||
exec 3>&1 |
||||
status=$(exec 4>&1 >&3; ( python setup.py testr --slowest --testr-args="--subunit $TESTRARGS"; echo $? >&4 ) | subunit-trace -f) && exit $status |
Loading…
Reference in new issue