12a9e321bd
This dries up tox.ini a bit while preserving the explanatory comment. Having the grouping expression on test jobs that don't require it has only minor impact: the regex is applied to the list of tests and no groups are found. Change-Id: I89330cf5b0ace25db6a7575cfa4f93d9575b08ac
13 lines
663 B
Plaintext
13 lines
663 B
Plaintext
[DEFAULT]
|
|
test_path=./placement/tests/unit
|
|
top_dir=./
|
|
# The group_regex describes how stestr will group tests into the same process
|
|
# when running concurently. The following ensures 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://stestr.readthedocs.io/en/latest/MANUAL.html#grouping-tests
|
|
# https://gabbi.readthedocs.io/en/latest/#purpose
|
|
group_regex=placement\.tests\.functional\.test_api(?:\.|_)([^_]+)
|