From b21d7bc55f15cfd1e394f72e75856dce11ad0717 Mon Sep 17 00:00:00 2001 From: Timur Sufiev Date: Wed, 16 Dec 2015 16:36:18 +0300 Subject: [PATCH] Skip test_keypair integration test until it's fixed Change-Id: I43f34eeed7a63fb22bbe015b6d81c0ffe111d6e3 Related-Bug: #1526791 --- .../test/integration_tests/tests/test_keypair.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openstack_dashboard/test/integration_tests/tests/test_keypair.py b/openstack_dashboard/test/integration_tests/tests/test_keypair.py index 45783b19e9..a0fb93c1bf 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=["1526791"]) class TestKeypair(helpers.TestCase): """Checks that the user is able to create/delete keypair.""" KEYPAIR_NAME = helpers.gen_random_resource_name("keypair")