Merge "Enable mistral tempest tests in fs027"

This commit is contained in:
Zuul 2018-08-17 18:44:03 +00:00 committed by Gerrit Code Review
commit 778c5a79a3
1 changed files with 24 additions and 1 deletions

View File

@ -84,7 +84,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'
@ -101,4 +109,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'