Adjust testr group_regex to not group on 'prefix'

The previous regex meant that all the prefix tests were running in their
own group of >400 tests. The new regex speads them out but keeps the
desired-per YAML file grouping.

In a sufficiently concurrent setting things speeds things up nicely.

Change-Id: I64a61b49e230e92bd91c950c63843e5ad7712030
This commit is contained in:
Chris Dent 2017-01-02 14:15:45 +00:00
parent 3632911772
commit ca43bec43e
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@
test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} ${PYTHON:-python} -m subunit.run discover -t . ${OS_TEST_PATH:-gnocchi/tests} $LISTOPT $IDOPTION
test_id_option=--load-list $IDFILE
test_list_option=--list
group_regex=(gabbi\.(suitemaker|driver)\.test_gabbi_([^_]+))_
group_regex=(gabbi\.suitemaker\.test_gabbi((_prefix_|_live_|_)([^_]+)))_