Commit 66de1cbd authored by gabrieldemarmiesse's avatar gabrieldemarmiesse

Removed the mode "test" for the tests because it's not a real test mode.

parent 084a25f5
...@@ -618,7 +618,7 @@ class TestBuilder(object): ...@@ -618,7 +618,7 @@ class TestBuilder(object):
test_class = CythonUnitTestCase test_class = CythonUnitTestCase
else: else:
test_class = CythonRunTestCase test_class = CythonRunTestCase
elif mode in ['compile', 'error', 'test']: elif mode in ['compile', 'error']:
test_class = CythonCompileTestCase test_class = CythonCompileTestCase
else: else:
raise KeyError('Invalid test mode: ' + mode) raise KeyError('Invalid test mode: ' + mode)
......
# mode: test # mode: run
def f(x, y): def f(x, y):
x = y x = y
......
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