Commit 58eb7a63 authored by Stefan Behnel's avatar Stefan Behnel

fixes, fixes, ...

parent 09d52ad8
......@@ -880,6 +880,7 @@ if __name__ == '__main__':
os.path.join(sys.prefix, 'lib', 'python'+sys.version[:3], 'test'),
'pyregr'))
xml_output_dir = options.xml_output_dir
if xml_output_dir:
try:
from xmlrunner import XMLTestRunner
......@@ -888,8 +889,8 @@ if __name__ == '__main__':
"Failed to import xmlrunner.XMLTestRunner, no XML output available\n")
xml_output_dir = None
if options.xml_output_dir:
test_runner = XMLTestRunner(output=options.xml_output_dir)
if xml_output_dir:
test_runner = XMLTestRunner(output=xml_output_dir, verbosity=options.verbosity)
else:
test_runner = unittest.TextTestRunner(verbosity=options.verbosity)
......
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