Fix variable tempest_test_whitelist

The name of the variable used by os_tempest to run a specific list of
tests is tempest_test_whitelist, instead of tempest_whitelist. Usually,
we use tempest_whitelist to hold a list of tests that have conditional
to be executed, for example, if release is equal to rocky, set the
tempest_test_whitelist variable to the content of tempest_whitelist,
which is not the case here.
The undercloud-oooq job is failing because tempest is running the
default list of tests 'smoke' which have tests that are not supported to
run in the undercloud.

Change-Id: I7c264e834bd423bbe945a0c8faa4440f7e6d21f6
This commit is contained in:
Arx Cruz 2021-02-01 11:08:08 +01:00
parent 7965e82df1
commit 9480ddcd8b
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ test_regex: ''
tempest_undercloud: true
tempest_overcloud: false
# Basic set of tempest tests to validate undercloud
tempest_whitelist:
tempest_test_whitelist:
- 'tempest.api.identity'
- 'tempest.api.image.v2.test_images.BasicOperationsImagesTest'
- 'tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest'