Enable mistral tempest tests in fs027

* fs027 deploys containerized uc and takes less time. Since
  mistral is used a lot to drive tripleo deployment.
  Gating it against mistral project upstream will help
  to catch issue early.

Change-Id: I72aa22eb9335729f798ddd3f2247950c48e91ece
This commit is contained in:
Chandan Kumar 2018-08-14 16:15:55 +05:30
parent 5d1b169c59
commit b9355d8477
1 changed files with 24 additions and 1 deletions

View File

@ -83,7 +83,15 @@ tempest_format: >-
tempest_undercloud: true
tempest_overcloud: false
tempest_whitelist:
tempest_whitelist: >-
{% if lookup('env', 'ZUUL_PROJECT') == "openstack/mistral" -%}
{{ tempest_whitelist_mistral }}
{%- else -%}
{{ tempest_whitelist_uc }}
{%- endif -%}
# default tempest tests for UC
tempest_whitelist_uc:
- 'tempest.api.identity'
- 'tempest.api.image.v2.test_images.BasicOperationsImagesTest'
- 'tempest.api.image.v2.test_images_tags_negative.ImagesTagsNegativeTest'
@ -100,4 +108,19 @@ tempest_whitelist:
- 'tempest.api.network.test_ports'
- 'tempest.api.network.test_routers_negative'
# tempest tests for Mistral
tempest_whitelist_mistral:
- 'mistral_tempest_tests'
test_black_regex: >-
{% if lookup('env', 'ZUUL_PROJECT') == "openstack/mistral" -%}
{{ mistral_test_black_regex }}
{%- endif -%}
# skip list for mistral tempest plugin
mistral_test_black_regex:
- 'mistral_tempest_tests.tests.scenario.engine.actions.v2.test_openstack_actions.OpenStackActionsTestsV2.test_cinder_actions'
- 'mistral_tempest_tests.tests.scenario.engine.actions.v2.test_ssh_actions.SSHActionsTestsV2.test_run_ssh_action'
- 'mistral_tempest_tests.tests.scenario.engine.actions.v2.test_ssh_actions.SSHActionsTestsV2.test_run_ssh_proxied_action'
- 'mistral_tempest_tests.tests.scenario.engine.actions.v2.test_openstack_actions.OpenStackActionsTestsV2.test_swift_actions'
- 'mistral_tempest_tests.tests.scenario.engine.actions.v2.test_multi_vim_authentication.MultiVimActionsTests.test_multi_vim_support_target_headers'