summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openstack_dashboard/test/integration_tests/tests/test_floatingip.py2
-rw-r--r--openstack_dashboard/test/integration_tests/tests/test_keypair.py2
-rw-r--r--openstack_dashboard/test/integration_tests/tests/test_user_create_delete.py2
3 files changed, 6 insertions, 0 deletions
diff --git a/openstack_dashboard/test/integration_tests/tests/test_floatingip.py b/openstack_dashboard/test/integration_tests/tests/test_floatingip.py
index 4591a653b..b19e5ef35 100644
--- a/openstack_dashboard/test/integration_tests/tests/test_floatingip.py
+++ b/openstack_dashboard/test/integration_tests/tests/test_floatingip.py
@@ -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."""
diff --git a/openstack_dashboard/test/integration_tests/tests/test_keypair.py b/openstack_dashboard/test/integration_tests/tests/test_keypair.py
index 45783b19e..a4ada35a6 100644
--- a/openstack_dashboard/test/integration_tests/tests/test_keypair.py
+++ b/openstack_dashboard/test/integration_tests/tests/test_keypair.py
@@ -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")
diff --git a/openstack_dashboard/test/integration_tests/tests/test_user_create_delete.py b/openstack_dashboard/test/integration_tests/tests/test_user_create_delete.py
index 58ea5e718..814543911 100644
--- a/openstack_dashboard/test/integration_tests/tests/test_user_create_delete.py
+++ b/openstack_dashboard/test/integration_tests/tests/test_user_create_delete.py
@@ -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())