summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaru Newby <marun@redhat.com>2015-04-06 16:28:00 +0000
committerMaru Newby <marun@redhat.com>2015-04-06 16:28:00 +0000
commitb7ac8501a0a4753be09b37525ec1665bafacdd8b (patch)
tree2c1867579cef15679d5291dc01d846d8957752a5
parentaa943f930d2d6e13c652917bac36c51abcaf4696 (diff)
downloadneutron-b7ac8501a0a4753be09b37525ec1665bafacdd8b.tar.gz
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
-rw-r--r--neutron/tests/retargetable/base.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/neutron/tests/retargetable/base.py b/neutron/tests/retargetable/base.py
index fe0e7c79ef..874dc8d8b3 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)