summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-06-01 10:50:25 +0000
committerGerrit Code Review <review@openstack.org>2022-06-01 10:50:25 +0000
commitf405b54320c15947eddc890888fa1af21eed252f (patch)
treeecce8545f9c07a9a69ccfa9d3627b2c9fbe3b8a1
parente21fb6793443e9eb6eb25cb3be0894ce25670829 (diff)
parent2ccc50a49b8440d024e4fb9e36b2772a438b3788 (diff)
downloadnova-f405b54320c15947eddc890888fa1af21eed252f.tar.gz
Merge "Define new functional test tox env for placement gate to run" into stable/train
-rw-r--r--tox.ini10
1 files changed, 10 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index c828c17d8f..150d98d0d1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -131,6 +131,16 @@ deps = {[testenv:functional]deps}
commands =
{[testenv:functional]commands}
+[testenv:functional-without-sample-db-tests]
+description =
+ Run functional tests by excluding the API|Notification
+ sample tests and DB tests. This env is used in
+ placement-nova-tox-functional-py38 job which is defined and
+ run in placement.
+deps = {[testenv:functional]deps}
+commands =
+ stestr --test-path=./nova/tests/functional run --black-regex '((?:api|notification)_sample_tests|functional\.db\.)' {posargs}
+
[testenv:api-samples]
setenv =
{[testenv]setenv}