diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-05-03 20:03:54 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-05-03 20:45:13 +0200 |
commit | 069930982dbf9745e6bc84cc7d4476be54fdcbc7 (patch) | |
tree | 44b01893ea69c60dc8d9ff15a4c0e7372f9835a2 | |
parent | 9141dcbb5af4b0d49e2cbb1aa55e55105529bd01 (diff) |
Update octavia regexes
It stops using noop drivers and adds all scenarios except:
- .*api.v2.test_availability_zone
- .*api.v2.test_availability_zone_profile
- .*api.v2.test_member.MemberAPITest.test_member_ipv4_create
- .*api.v2.test_member.MemberAPITest.test_member_ipv6_create
It doesn't run ipv6 which asks for a deep dive (ipv6 from containers?)
It increases threads to 3 as the other testcases.
Change-Id: I36d9d764a5ab92efe89196181bffa3ad0a57227c
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | docker/smoke/testcases.yaml | 9 | ||||
-rw-r--r-- | functest/ci/testcases.yaml | 7 | ||||
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml | 2 |
3 files changed, 12 insertions, 6 deletions
diff --git a/docker/smoke/testcases.yaml b/docker/smoke/testcases.yaml index 16926111d..7bcd53fcc 100644 --- a/docker/smoke/testcases.yaml +++ b/docker/smoke/testcases.yaml @@ -258,9 +258,12 @@ tiers: run: name: tempest_common args: - mode: - '^octavia_tempest_plugin.tests.api.v2' + mode: "(?!.*api.v2.test_availability_zone)\ + (?!.*api.v2.test_availability_zone_profile)\ + (?!.*api.v2.test_member.MemberAPITest.test_member_ipv4_create)\ + (?!.*api.v2.test_member.MemberAPITest.test_member_ipv6_create)\ + (^octavia_tempest_plugin.tests.(api|scenario))" services: - octavia option: - - '--concurrency=2' + - '--concurrency=3' diff --git a/functest/ci/testcases.yaml b/functest/ci/testcases.yaml index 377f966cf..70804b05a 100644 --- a/functest/ci/testcases.yaml +++ b/functest/ci/testcases.yaml @@ -436,8 +436,11 @@ tiers: run: name: tempest_common args: - mode: - '^octavia_tempest_plugin.tests.api.v2' + mode: "(?!.*api.v2.test_availability_zone)\ + (?!.*api.v2.test_availability_zone_profile)\ + (?!.*api.v2.test_member.MemberAPITest.test_member_ipv4_create)\ + (?!.*api.v2.test_member.MemberAPITest.test_member_ipv6_create)\ + (^octavia_tempest_plugin.tests.(api|scenario))" services: - octavia option: diff --git a/functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml b/functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml index 4b14bae53..274150a21 100644 --- a/functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml +++ b/functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml @@ -71,7 +71,7 @@ volume-feature-enabled: consistency_group: false volume_revert: true load_balancer: - test_with_noop: true + test_with_ipv6: false neutron_plugin_options: agent_availability_zone: nova available_type_drivers: flat,geneve,vlan,gre,local,vxlan |