]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Skip example retargetable functional test
authorMaru Newby <marun@redhat.com>
Mon, 6 Apr 2015 16:28:00 +0000 (16:28 +0000)
committerMaru Newby <marun@redhat.com>
Mon, 6 Apr 2015 16:28:00 +0000 (16:28 +0000)
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

index fe0e7c79ef1f76421fbed5dd34ade3713ed75625..874dc8d8b369624829837cc75326ad9f4630899d 100644 (file)
@@ -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)