Commit f42b6eeb authored by Matti Picus's avatar Matti Picus Committed by GitHub

Fix call to run_distutils() in debugger test (GH-4256)

parent af637114
...@@ -132,10 +132,11 @@ class DebuggerTestCase(unittest.TestCase): ...@@ -132,10 +132,11 @@ class DebuggerTestCase(unittest.TestCase):
) )
cython_compile_testcase.run_distutils( cython_compile_testcase.run_distutils(
test_directory=opts['test_directory'],
module=opts['module'],
workdir=opts['test_directory'],
incdir=None, incdir=None,
workdir=self.tempdir,
extra_extension_args={'extra_objects':['cfuncs.o']}, extra_extension_args={'extra_objects':['cfuncs.o']},
**opts
) )
finally: finally:
optimization_disabler.restore_state() optimization_disabler.restore_state()
......
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