Skip to content

Commit

Permalink
Merge pull request #3235 from d34dh0r53/RI-357-modify-whitelist_rc
Browse files Browse the repository at this point in the history
[RI-357] Override tempest whitelist
  • Loading branch information
cjloader authored Sep 4, 2018
2 parents 7acbcbe + 22ad21b commit ec4086d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions etc/openstack_deploy/group_vars/all/osa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,14 @@ haproxy_extra_services:

# Define the distro version globally
repo_build_os_distro_version: "{{ (ansible_distribution | lower) | replace(' ', '_') }}-{{ ansible_distribution_version.split('.')[:2] | join('.') }}-{{ ansible_architecture | lower }}"

# RI-357 Tempest Overrides
# TODO(d34dh0r53): Once the test_minimum_basic_scenario is working we can remove
# this
tempest_test_whitelist:
- "{{ (tempest_service_available_ceilometer | bool) | ternary('tempest.api.telemetry', '') }}"
- "{{ (tempest_service_available_heat | bool) | ternary('tempest.api.orchestration.stacks.test_non_empty_stack', '') }}"
- "{{ (tempest_service_available_nova | bool) | ternary('tempest.scenario.test_server_basic_ops', '') }}"
- "{{ (tempest_service_available_swift | bool) | ternary('tempest.scenario.test_object_storage_basic_ops', '') }}"
- "{{ (tempest_volume_backup_enabled | bool) | ternary('tempest.api.volume.admin.test_volumes_backup', '') }}"
- "{{ (tempest_volume_multi_backend_enabled | bool) | ternary('tempest.api.volume.admin.test_multi_backend', '') }}"

0 comments on commit ec4086d

Please sign in to comment.