From 2757da0eb8bf9ca961c78464b6a928d16ec42948 Mon Sep 17 00:00:00 2001 From: kgriffs Date: Mon, 27 Jan 2014 11:57:44 -0600 Subject: [PATCH] Skip message_get_many schema test until we can repro reliably While we try to track down the root cause of this random test failure, this patch temporarily skips that test. We don't know yet whether it it is a false positive or what. Change-Id: Iabad78da94cf1e3033f3e03c20d2aa1ea8d8a5e1 Related-Bug: #1273335 --- tests/functional/wsgi/v1/test_messages.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/functional/wsgi/v1/test_messages.py b/tests/functional/wsgi/v1/test_messages.py index 1ca6ae6c2..d595adf49 100644 --- a/tests/functional/wsgi/v1/test_messages.py +++ b/tests/functional/wsgi/v1/test_messages.py @@ -105,6 +105,9 @@ class TestMessages(base.FunctionalTestBase): result = self.client.get(url) self.assertEqual(result.status_code, 200) + self.skipTest('Bug #1273335 - Get set of messages returns wrong hrefs ' + '(happens randomly)') + # Verify that the response json schema matches the expected schema expected_schema = self.response.get_schema('message_get_many') self.assertSchema(result.json(), expected_schema)