Skip test_{floatingip,keypair,create_delete_user} for now

The tests are failing for different reasons (see the referenced bug),
so skip them for now.

Change-Id: I9622ed1ba7444089fa1ee6d0c915b8d31c752af6
Related-Bug: #1467950
This commit is contained in:
Luigi Toscano 2015-06-23 19:37:23 +02:00
parent 94c76ff346
commit b0c62463c7
3 changed files with 6 additions and 0 deletions

View File

@ -14,8 +14,10 @@
# under the License.
from openstack_dashboard.test.integration_tests import helpers
from openstack_dashboard.test.integration_tests.tests import decorators
@decorators.skip_because(bugs=["1467950"])
class TestFloatingip(helpers.TestCase):
"""Checks that the user is able to allocate/release floatingip."""

View File

@ -14,8 +14,10 @@
# under the License.
from openstack_dashboard.test.integration_tests import helpers
from openstack_dashboard.test.integration_tests.tests import decorators
@decorators.skip_because(bugs=["1467950"])
class TestKeypair(helpers.TestCase):
"""Checks that the user is able to create/delete keypair."""
KEYPAIR_NAME = helpers.gen_random_resource_name("keypair")

View File

@ -12,8 +12,10 @@
import uuid
from openstack_dashboard.test.integration_tests import helpers
from openstack_dashboard.test.integration_tests.tests import decorators
@decorators.skip_because(bugs=["1467950"])
class TestUser(helpers.AdminTestCase):
USER_NAME = "user_" + str(uuid.uuid4())