2012-10-30 16:30:02 -07:00
|
|
|
[DEFAULT]
|
2013-05-21 13:45:40 +03:00
|
|
|
test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \
|
|
|
|
OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \
|
2013-08-03 00:09:08 +10:00
|
|
|
OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-160} \
|
2014-11-06 11:32:34 +01:00
|
|
|
${PYTHON:-python} -m subunit.run discover -t ./ ${OS_TEST_PATH:-./nova/tests} $LISTOPT $IDOPTION
|
2013-05-21 13:45:40 +03:00
|
|
|
|
2012-10-30 16:30:02 -07:00
|
|
|
test_id_option=--load-list $IDFILE
|
|
|
|
test_list_option=--list
|
2016-06-13 17:25:03 +00:00
|
|
|
# NOTE(cdent): The group_regex describes how testrepository will
|
|
|
|
# group tests into the same process when running concurently. The
|
|
|
|
# following insures that gabbi tests coming from the same YAML file
|
|
|
|
# are all in the same process. This is important because each YAML
|
|
|
|
# file represents an ordered sequence of HTTP requests. Note that
|
|
|
|
# tests which do not match this regex will not be grouped in any
|
|
|
|
# special way. See the following for more details.
|
|
|
|
# http://testrepository.readthedocs.io/en/latest/MANUAL.html#grouping-tests
|
|
|
|
# https://gabbi.readthedocs.io/en/latest/#purpose
|
2016-09-16 08:47:56 +00:00
|
|
|
group_regex=nova\.tests\.functional\.api\.openstack\.placement\.test_placement_api(?:\.|_)([^_]+)
|