From 1ed0d4712d5da75801b054133c53f58073341784 Mon Sep 17 00:00:00 2001 From: Matt Thompson Date: Wed, 15 Apr 2015 11:17:25 +0100 Subject: [PATCH] Disable failing test_network_basic_ops smoke test This commit disables a test_network_basic_ops test from running as part of the smoke tests. This test is failing frequently and similar to the scenario tests should be disabled until we can get it passing reliably. Closes-Bug: #1444395 Change-Id: I0256f274775fa0abd1c5c196cb1d2a92e39a1af7 --- .../roles/os_tempest/templates/openstack_tempest_gate.sh.j2 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/playbooks/roles/os_tempest/templates/openstack_tempest_gate.sh.j2 b/playbooks/roles/os_tempest/templates/openstack_tempest_gate.sh.j2 index 27c19e4283..fbe0bebeda 100644 --- a/playbooks/roles/os_tempest/templates/openstack_tempest_gate.sh.j2 +++ b/playbooks/roles/os_tempest/templates/openstack_tempest_gate.sh.j2 @@ -55,7 +55,10 @@ function gen_test_list_scenario() { # Run smoke tests function gen_test_list_smoke() { - grep smoke + # this specific test fails frequently and is making our multi node nightly + # job unstable (see bug in gen_test_list_scenario function) + # TODO: re-add back in once the specific issue is identified and corrected + grep smoke | grep -v tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_update_router_admin_state } # Run all tests