From c6e8648786cb6bceb5951e4fba9b48014e29b215 Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Mon, 27 Jun 2022 15:23:02 +0200 Subject: [PATCH] Skip test_quota_network_set_with_force func test This test was added in [0] and it causes a lot of failures, since setting the network quota to 1 will result in quota errors for any other test that is trying to create a network in parallel. We can only run this test in a serial tempest task that would need to be created for such a scenario. Related-Story: 2010110 Change-Id: I6015c181ecabff26bdb1b0c11b0e33ad39e6f083 --- openstackclient/tests/functional/common/test_quota.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openstackclient/tests/functional/common/test_quota.py b/openstackclient/tests/functional/common/test_quota.py index 5096fa06c..783294df1 100644 --- a/openstackclient/tests/functional/common/test_quota.py +++ b/openstackclient/tests/functional/common/test_quota.py @@ -201,6 +201,7 @@ class QuotaTests(base.TestCase): self.PROJECT_NAME) def test_quota_network_set_with_force(self): + self.skipTest('story 2010110') if not self.haz_network: self.skipTest('No Network service present') # NOTE(ralonsoh): the Neutron support for the flag "check-limit" was