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
This commit is contained in:
kgriffs 2014-01-27 11:57:44 -06:00
parent 8faf500d4c
commit 2757da0eb8

View File

@ -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)