Commit 9d537027 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix if XML_RESULTS is not set.

parent 9382558d
...@@ -797,7 +797,7 @@ def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, fo ...@@ -797,7 +797,7 @@ def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, fo
return module_list return module_list
if os.environ['XML_RESULTS']: if os.environ.get('XML_RESULTS'):
compile_result_dir = os.environ['XML_RESULTS'] compile_result_dir = os.environ['XML_RESULTS']
def record_results(func): def record_results(func):
def with_record(*args): def with_record(*args):
......
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