Disable XML tests on Py26

Unit testing on Py26 takes too long to run.  The code paths are the
same, so we'll temporarily skip tests is the class contains XML
formating since duplicate full stack JSON tests are run.

Change-Id: Ie8eddfe0b6af39f32380ce532e0c26acc0a6596d
Related-Bug: 1295281
This commit is contained in:
Mark McClain 2014-03-20 13:49:13 -04:00 committed by Kevin Benton
parent 1ed0b46373
commit 9d6aceeab7

View File

@ -20,6 +20,7 @@
import contextlib
import logging
import os
import sys
import eventlet.timeout
import fixtures
@ -117,6 +118,9 @@ class BaseTestCase(testtools.TestCase):
'neutron.common.exceptions.NeutronException.use_fatal_exceptions',
fake_use_fatal_exceptions))
if sys.version_info < (2, 7) and getattr(self, 'fmt', '') == 'xml':
raise self.skipException('XML Testing Skipped in Py26')
def config(self, **kw):
"""Override some configuration values.