From 61183804bf81225f2177277639ed3e8b1d15c27e Mon Sep 17 00:00:00 2001 From: Jakub Libosvar Date: Wed, 22 Feb 2017 10:51:35 -0500 Subject: [PATCH] tempest: Skip QoS test until fixed The test is failing intermittently. In order to reach a better stability of the job running in-tree tempest tests, this patch skips the test until we come up with a proper fix. Change-Id: I37f1488db258f6a4d383fb472cb5433c65371ac5 Related-bug: 1662109 (cherry picked from commit e674034aa1d33ae5aa65ac7b809ca5dd4c2867c5) --- neutron/tests/tempest/scenario/test_qos.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neutron/tests/tempest/scenario/test_qos.py b/neutron/tests/tempest/scenario/test_qos.py index b5584382d1b..d16f294f376 100644 --- a/neutron/tests/tempest/scenario/test_qos.py +++ b/neutron/tests/tempest/scenario/test_qos.py @@ -20,6 +20,7 @@ from oslo_log import log as logging from tempest.lib.common import ssh from tempest.lib import exceptions from tempest import test +import testtools from neutron.common import utils from neutron.services.qos import qos_consts @@ -82,6 +83,7 @@ class QoSTest(base.BaseTempestTestCase): @classmethod @test.requires_ext(extension="qos", service="network") @base_api.require_qos_rule_type(qos_consts.RULE_TYPE_BANDWIDTH_LIMIT) + @testtools.skip('bug/1662109') def resource_setup(cls): super(QoSTest, cls).resource_setup()