Skip whitebox tests until they are fixed.

Change-Id: I55937b68fa3193bac0441a63e8c979f5c418ffa3
This commit is contained in:
David Kranz 2012-08-07 16:11:17 -04:00
parent 051075a596
commit a55ab261b1
1 changed files with 3 additions and 0 deletions

View File

@ -20,12 +20,15 @@ from tempest import whitebox
from tempest.tests.identity.base import BaseIdentityAdminTest
from nose.plugins.attrib import attr
import nose
@attr(type='whitebox')
class ServersWhiteboxTest(whitebox.ComputeWhiteboxTest):
@classmethod
def setUpClass(cls):
raise nose.SkipTest("Until Bug 1034129 is fixed")
super(ServersWhiteboxTest, cls).setUpClass()
BaseIdentityAdminTest.setUpClass()
cls.client = cls.servers_client