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!
""", t)
# TODO: Re-enable once they're more robust.
if sys.version_info[:2] >= (2, 5) and False:
if sys.version_info[:2] >= (2, 5):
from Cython.Debugger import DebugWriter
from Cython.Debugger.Tests.TestLibCython import DebuggerTestCase
else:
......
......@@ -644,7 +644,8 @@ class CythonUnitTestCase(CythonCompileTestCase):
except Exception:
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 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