Load os_tempest skiplist only train release onwards

https://review.opendev.org/694719 moves fs027 to os_tempest
and it breaks the tempest_test_regex for stein releases for
validate-tempest as in else clause os_tempest blacklist is
passed. Making it conditional fixes the issue.

Closes-Bug: #1854612

Change-Id: I33a818228e3366c29bc38719978673afd15bff9b
Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
This commit is contained in:
Chandan Kumar (raukadah) 2019-12-02 08:48:20 +05:30
parent dfdf9dc11e
commit 07e161579b
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ undercloud_blacklist: "{{ skip_list_tests.known_failures | json_query('[?undercl
test_black_regex: >-
{% if lookup('env', 'ZUUL_PROJECT') == "openstack/mistral" -%}
{{ mistral_test_black_regex }}
{%- else -%}
{%- elif release not in ['pike', 'queens', 'rocky', 'stein'] -%}
{{ undercloud_blacklist }}
{%- endif -%}