diff --git a/openstack_dashboard/test/integration_tests/tests/test_floatingip.py b/openstack_dashboard/test/integration_tests/tests/test_floatingip.py index 4591a653b7..b19e5ef356 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 45783b19e9..a4ada35a67 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 58ea5e7187..814543911a 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())