diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-26 18:02:37 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-26 22:28:12 +0100 |
commit | 2241f027c728529901d523225c07afbed664e3b4 (patch) | |
tree | 505eb24de2a1bfe4df2fa0699c8330c21a936001 /docker/smoke-cntt/testcases.yaml | |
parent | d2cb363b016a3c613e4115ea12c5b88475a3aa6f (diff) |
Add tempest_scenario and tempest_slow in smoke-cntt
The testcases related to ipv6 are currenty not executed because they
cannot be covered by our SUTs.
Close cntt-n/CNTT#696
Change-Id: Ic0ca3818011bede965702e778f37752059c86173
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit a1c9756dbf867a6cfacffdecadbaf66c412c129f)
Diffstat (limited to 'docker/smoke-cntt/testcases.yaml')
-rw-r--r-- | docker/smoke-cntt/testcases.yaml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/docker/smoke-cntt/testcases.yaml b/docker/smoke-cntt/testcases.yaml index b6e3dc999..7fefad5f1 100644 --- a/docker/smoke-cntt/testcases.yaml +++ b/docker/smoke-cntt/testcases.yaml @@ -164,3 +164,52 @@ tiers: (?!.*\\[.*\\bslow\\b.*\\])(^tempest.api)" option: - '--concurrency=4' + + - + case_name: tempest_scenario + project_name: functest + criteria: 100 + blocking: false + deny_skipping: true + tests_count: 9 + description: >- + The list of test cases is generated by + Tempest automatically and depends on the parameters of + the OpenStack deployment. + https://github.com/openstack/tempest/blob/18.0.0/tox.ini#L84 + run: + name: tempest_scenario + args: + mode: "(?!.*test_network_v6)\ + (?!.*test_volume_boot_pattern.TestVolumeBootPattern.test_boot_server_from_encrypted_volume_luks)\ + (?!.*\\[.*\\bslow\\b.*\\])(^tempest.scenario)" + option: + - '--concurrency=1' + + - + case_name: tempest_slow + project_name: functest + criteria: 100 + blocking: false + deny_skipping: true + tests_count: 36 + description: >- + The list of test cases is generated by + Tempest automatically and depends on the parameters of + the OpenStack deployment. + https://github.com/openstack/tempest/blob/18.0.0/tox.ini#L84 + run: + name: tempest_common + args: + mode: "(?!.*test_volume_swap)\ + (?!.*test_server_personality)\ + (?!.*test_container_sync.ContainerSyncTest.test_container_synchronization)\ + (?!.*test_encrypted_cinder_volumes)\ + (?!.*test_minbw_allocation_placement)\ + (?!.*test_network_advanced_server_ops.TestNetworkAdvancedServerOps.test_server_connectivity_cold_migration_revert)\ + (?!.*test_network_v6)\ + (?!.*test_security_groups_basic_ops.TestSecurityGroupsBasicOps.test_boot_into_disabled_port_security_network_without_secgroup)\ + (?!.*test_volume_migrate_attached)\ + (?=.*\\[.*\\bslow\\b.*\\])(^tempest.)" + option: + - '--concurrency=2' |