From c9a8bc4f6673513114d1b629dd6dcaa5654d76b9 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Tue, 22 Jan 2019 23:16:34 +0100 Subject: [PATCH] Blacklist tempest test TestTelemetryIntegration This blacklists the TestTelemetryIntegration tempest job that is usually failing with the message [1]. We've had this for a long time and we pretty much need to recheck every patch, lets blacklist if for now until somebody can dig up the issue and solve it. It's bad since there isn't much telemetry coverage in Tempest, but there is a autoscaling job that hopelly tests some aspects for now. [1] http://logs.openstack.org/19/618919/4/check/puppet-openstack-integration-5-scenario001-tempest-centos-7-luminous/e07a420/job-output.txt.gz#_2019-01-22_16_27_13_049172 Change-Id: Ic6824dafc2fb37168b16f4923cb967e0c8d4947e --- run_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 2253b7cbc..fadc0e6cb 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -318,6 +318,7 @@ if uses_debs; then echo "mistral_tempest_tests.tests.api.v2.test_executions.ExecutionTestsV2.test_get_list_executions" > /tmp/openstack/tempest/test-blacklist.txt echo "ceilometer.tests.tempest.api.test_telemetry_notification_api.TelemetryNotificationAPITest.test_check_glance_v2_notifications" >> /tmp/openstack/tempest/test-blacklist.txt echo "tempest_horizon.tests.scenario.test_dashboard_basic_ops.TestDashboardBasicOps.test_basic_scenario" >> /tmp/openstack/tempest/test-blacklist.txt + echo "telemetry_tempest_plugin.scenario.test_telemetry_integration.TestTelemetryIntegration" >> /tmp/openstack/tempest/test-blacklist.txt # TODO (amoralej) tempest tests for object_storage are not working in master with current version of tempest in uca (16.1.0). echo "tempest.api.object_storage" >> /tmp/openstack/tempest/test-blacklist.txt EXCLUDES="--blacklist-file=/tmp/openstack/tempest/test-blacklist.txt" @@ -342,7 +343,7 @@ else # requires the above mentioned ryu.tests.integrated.common module (we need to init tempest workspace now). # Note(chandankumar): Blacklist tempest_horizon.tests.scenario.test_dashboard_basic_ops test as they are currently flacky in CI on CentOS # Adding it to skip list will help till we find the correct solution - EXCLUDES="--black-regex=^neutron_dynamic_routing.tests.tempest.scenario|tempest_horizon.tests.scenario.test_dashboard_basic_ops" + EXCLUDES="--black-regex=^neutron_dynamic_routing.tests.tempest.scenario|tempest_horizon.tests.scenario.test_dashboard_basic_ops|telemetry_tempest_plugin.scenario.test_telemetry_integration.TestTelemetryIntegration" fi print_header 'Running Tempest' cd /tmp/openstack/tempest