Add a serial full tox job to tox.ini
This commit adds a new tox job for running a full tempest job but
serially. Since neutron tenant isolation was fixed we don't have a
test run for the not tenant isolated path. This is the first step in
setting up a periodic non-isolated serial job.
Change-Id: I886b3fd416b2063df5daaca8d17ac6fbbdfe399e
diff --git a/tox.ini b/tox.ini
index 88f2537..290069e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -40,6 +40,12 @@
commands =
bash tools/pretty_tox.sh '(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario|thirdparty|cli)) {posargs}'
+[testenv:full-serial]
+# The regex below is used to select which tests to run and exclude the slow tag:
+# See the testrepostiory bug: https://bugs.launchpad.net/testrepository/+bug/1208610
+commands =
+ bash tools/pretty_tox_serial.sh '(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario|thirdparty|cli)) {posargs}'
+
[testenv:testr-full]
commands =
bash tools/pretty_tox.sh '(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario|thirdparty|cli)) {posargs}'