Commit fe356e1f authored by Robert Bradshaw's avatar Robert Bradshaw

More gdb test disabling.

parent 53a4ad7f
...@@ -144,8 +144,7 @@ class TestWithTransform(object): # (TransformTest): # Disabled! ...@@ -144,8 +144,7 @@ class TestWithTransform(object): # (TransformTest): # Disabled!
""", t) """, t)
# TODO: Re-enable once they're more robust. if sys.version_info[:2] >= (2, 5):
if sys.version_info[:2] >= (2, 5) and False:
from Cython.Debugger import DebugWriter from Cython.Debugger import DebugWriter
from Cython.Debugger.Tests.TestLibCython import DebuggerTestCase from Cython.Debugger.Tests.TestLibCython import DebuggerTestCase
else: else:
......
...@@ -644,7 +644,8 @@ class CythonUnitTestCase(CythonCompileTestCase): ...@@ -644,7 +644,8 @@ class CythonUnitTestCase(CythonCompileTestCase):
except Exception: except Exception:
pass pass
include_debugger = sys.version_info[:2] > (2, 4) # TODO: Re-enable once they're more robust.
include_debugger = sys.version_info[:2] >= (2, 5) and False
def collect_unittests(path, module_prefix, suite, selectors): def collect_unittests(path, module_prefix, suite, selectors):
def file_matches(filename): def file_matches(filename):
......
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