From b7ac8501a0a4753be09b37525ec1665bafacdd8b Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Mon, 6 Apr 2015 16:28:00 +0000 Subject: [PATCH] Skip example retargetable functional test The example retargetable test that previously ran as part of the functional suite is now skipped due to the fullstack example's db fixture usage causing the test to fail if it the fullstack example runs first on the same worker. Change-Id: I0a34f9ba04c53a4291698be819070c66009c8b4a Related-Bug: #1440797 --- neutron/tests/retargetable/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neutron/tests/retargetable/base.py b/neutron/tests/retargetable/base.py index fe0e7c79e..874dc8d8b 100644 --- a/neutron/tests/retargetable/base.py +++ b/neutron/tests/retargetable/base.py @@ -77,4 +77,7 @@ class RetargetableApiTest(testscenarios.WithScenarios, if rest_enabled(): raise self.skipException( 'Tempest fixture requirements prevent this test from running') + else: + raise self.skipException( + "Fullstack's db fixture usage prevents this test from running") self.useFixture(self.client) -- 2.45.2