summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-05-25 15:25:04 +0000
committerGerrit Code Review <review@openstack.org>2022-05-25 15:25:04 +0000
commit5e287d2306a04f1b46c292ccb379d87c60802608 (patch)
treed8415b69fe90a491aaf5c31ceb245c59f7e3784f
parent109a631df424932566a504f5887bbb1fd1840184 (diff)
parent6e6c69f2f4a917b63ed5636d386d2c908268a7f0 (diff)
downloadnova-5e287d2306a04f1b46c292ccb379d87c60802608.tar.gz
Merge "Define new functional test tox env for placement gate to run" into stable/ussuri
-rw-r--r--tox.ini10
1 files changed, 10 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 9936fe7081..5ff9880c7e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -115,6 +115,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}