Commit 684feedc authored by Stefan Behnel's avatar Stefan Behnel

reenable test forking in test runner

parent b97c305f
......@@ -387,7 +387,7 @@ class CythonRunTestCase(CythonCompileTestCase):
pass
def run_doctests(self, module_name, result):
if sys.version_info[0] >= 3 or not hasattr(os, 'forkx'):
if sys.version_info[0] >= 3 or not hasattr(os, 'fork'):
doctest.DocTestSuite(module_name).run(result)
return
......
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