Commit 2eacce11 authored by scoder's avatar scoder Committed by GitHub

Merge pull request #2460 from gabrieldemarmiesse/remove_tag_test

Removed the mode "test" for the tests because it's not a real test mode.
parents 991a9ec5 66de1cbd
......@@ -618,7 +618,7 @@ class TestBuilder(object):
test_class = CythonUnitTestCase
else:
test_class = CythonRunTestCase
elif mode in ['compile', 'error', 'test']:
elif mode in ['compile', 'error']:
test_class = CythonCompileTestCase
else:
raise KeyError('Invalid test mode: ' + mode)
......
# mode: test
# mode: run
def f(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