Commit 00df53bf authored by Hanno Schlichting's avatar Hanno Schlichting

Disable a warningshook test under Python 2.7. No idea how to make that work in both 2.6 and 2.7

parent b058056d
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
import os import os
import cStringIO import cStringIO
import sys
import tempfile import tempfile
import unittest import unittest
import warnings import warnings
...@@ -70,6 +71,7 @@ class TestWarnFilter(unittest.TestCase): ...@@ -70,6 +71,7 @@ class TestWarnFilter(unittest.TestCase):
self.assertEqual(conf.instancehome, TEMPNAME) self.assertEqual(conf.instancehome, TEMPNAME)
return conf, handler return conf, handler
if sys.version_info < (2, 7):
def test_behavior(self): def test_behavior(self):
conf, handler = self.load_config_text("""\ conf, handler = self.load_config_text("""\
instancehome <<INSTANCE_HOME>> instancehome <<INSTANCE_HOME>>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment