-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tempest]Try to enable more test coverage
We are focusing only the scenario tests as we assume api tests are run on the service operator level and also we want to keep the run time of the test job reasonable.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,39 @@ | ||
--- | ||
- job: | ||
name: openstack-operator-tempest-multinode | ||
parent: podified-multinode-edpm-deployment-crc-3comp | ||
dependencies: ["openstack-k8s-operators-content-provider"] | ||
vars: | ||
cifmw_tempest_tempestconf_profile: | ||
overrides: | ||
compute.min_compute_nodes: 3 | ||
compute-feature-enabled.vnc_console: true | ||
compute-feature-enabled.stable_rescue: true | ||
compute_feature_enabled.hostname_fqdn_sanitization: true | ||
validation.run_validation: true | ||
# NOTE(gibi): This is a WA to force the publicURL as otherwise | ||
# tempest gets configured with adminURL and that causes test | ||
# instability. | ||
identity.v3_endpoint_type: public | ||
cifmw_tempest_tests_allowed: | ||
# NOTE(gibi): enable only the high level scenario tests to keep the | ||
# job run time reasonable | ||
- tempest.scenario | ||
cifmw_tempest_tests_skipped: | ||
# NOTE(gibi): there are no cinder backend enabled so test needing a | ||
# volumes needs to be skipped | ||
- tempest.scenario.test_minimum_basic.TestMinimumBasicScenario | ||
- test_shelve_volume_backed_instance | ||
- tempest.scenario.test_stamp_pattern.TestStampPattern | ||
- tempest.scenario.test_volume_boot_pattern.TestVolumeBootPattern | ||
# NOTE(gibi): move operations does not work yet | ||
- test_server_connectivity_cold_migration | ||
- test_server_connectivity_live_migration | ||
- test_server_connectivity_resize | ||
- project: | ||
name: openstack-k8s-operators/openstack-operator | ||
templates: | ||
- podified-multinode-edpm-baremetal-pipeline | ||
github-check: | ||
jobs: | ||
- openstack-operator-tempest-multinode |