From e674034aa1d33ae5aa65ac7b809ca5dd4c2867c5 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 --- 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 8b8e90a22a6..70b962f5366 100644 --- a/neutron/tests/tempest/scenario/test_qos.py +++ b/neutron/tests/tempest/scenario/test_qos.py @@ -20,6 +20,7 @@ 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 @@ -81,6 +82,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()