Run test_minimum_basic_scenario test for cinder

Currently we run only test_server_basic_ops scenario that does launch
VM from ephemeral drive. While it's important thing to test, we still
need to ensure, that volume-based instances does also work properly.
For that we will run test_minimum_basic_scenario when os_cinder
role is running in CI. We also want to minimize amount of test to
reduce time in CI, thus it's not added as a general test.

Change-Id: I037f0eeafae9cd8dc2f65deee1a12f28ed78ad78
This commit is contained in:
Dmitriy Rabotyagov 2022-09-26 21:19:26 +02:00 committed by Dmitriy Rabotyagov
parent 38ee58b390
commit c002b35967
2 changed files with 5 additions and 3 deletions

View File

@ -89,8 +89,5 @@ tempest_test_includelist:
- "tempest.api.identity.v3"
- "{{ (tempest_service_available_ceilometer | bool) | ternary('tempest.api.telemetry', '') }}"
- "{{ (tempest_service_available_heat | bool) | ternary('tempest.api.orchestration.stacks.test_non_empty_stack', '') }}"
# TODO(odyssey4me):
# Once the issue with this test is worked out, re-enable it.
#- "{{ (tempest_service_available_nova | bool) | ternary('tempest.scenario.test_minimum_basic', '') }}"
- "{{ (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', '') }}"

View File

@ -299,4 +299,9 @@ cinder_backends:
- low-iops
- high-iops
- ultra-high-iops
{% if 'cinder' in bootstrap_host_scenarios %}
tempest_test_includelist:
- tempest.scenario.test_minimum_basic.TestMinimumBasicScenario.test_minimum_basic_scenario
{% endif %}
{% endif %}