Enable run_validation.

As the device tagging feature is not ready yet but the relative
tests will be executed if run_validation is enabled. So let's
put those tests in the exclusion list.

Change-Id: Ie8058c94c8e8ccedb71b7a73dc6708a88d1e6c30
This commit is contained in:
jianghua 2017-03-15 08:55:54 +00:00
parent b9eab0cd48
commit 4bb47eaf1c
2 changed files with 3 additions and 0 deletions

View File

@ -253,6 +253,7 @@ Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch
Q_ML2_PLUGIN_TYPE_DRIVERS="vlan,flat"
OVS_PHYSICAL_BRIDGE=br-ex
PUBLIC_BRIDGE=br-ex
TEMPEST_RUN_VALIDATION="True"
# Set instance build timeout to 300s in tempest.conf
BUILD_TIMEOUT=390
EOF

View File

@ -4,6 +4,8 @@ COMMON_TEMPEST_REGEX="(?!.*\[.*\bslow\b.*\]"
COMMON_TEMPEST_REGEX="$COMMON_TEMPEST_REGEX|.*tempest.api.volume.*test_volumes_backup.*"
COMMON_TEMPEST_REGEX="$COMMON_TEMPEST_REGEX|.*tempest.api.volume.test_volumes_actions.*test_volume_upload.*"
COMMON_TEMPEST_REGEX="$COMMON_TEMPEST_REGEX|.*tempest.api.compute.servers.test_novnc.NoVNCConsoleTestJSON.test_novnc.*"
# Exclude the device tagging tests as that feature is still under development: https://review.openstack.org/#/c/333781
COMMON_TEMPEST_REGEX="$COMMON_TEMPEST_REGEX|.*tempest.api.compute.servers.test_device_tagging.*"
NOVA_NETWORK_TEMPEST_REGEX=$COMMON_TEMPEST_REGEX
NOVA_NETWORK_TEMPEST_REGEX="$NOVA_NETWORK_TEMPEST_REGEX)(^tempest\.(api|scenario|thirdparty))"