Tweaking conditional to skip tempest run during dpa tests

We set the skip_os_tempest in the job vars

Change-Id: Id57b2a0c69d4ea484b1a186b36e1b5208b3c5762
This commit is contained in:
Marios Andreou 2023-05-01 16:44:45 +03:00
parent 7d269f3bf8
commit 126074ccfd
1 changed files with 5 additions and 3 deletions

View File

@ -67,9 +67,11 @@
tempest_cloud_name: 'standalone'
tasks:
- include_tasks: tasks/tempest.yml
when: job is undefined or (job is defined and
job.featureset is defined and job.featureset != '056')
and use_os_tempest | default(true)
when:
- job is undefined or (job is defined and
job.featureset is defined and job.featureset != '056')
- use_os_tempest | default(true)
- not job.skip_os_tempest|default(false)
environment:
# Disable ssl warnings
CURL_CA_BUNDLE: ""