##// END OF EJS Templates
Pass subprocess test runners a suitable location for xunit output.
Thomas Kluyver -
Show More
@@ -284,6 +284,11 b' class IPTester(object):'
284
284
285 # Assemble call
285 # Assemble call
286 self.call_args = self.runner+self.params
286 self.call_args = self.runner+self.params
287
288 print self.call_args
289 if '--with-xunit' in self.call_args:
290 sect = [p for p in self.params if p.startswith('IPython')][0]
291 self.call_args.append('--xunit-file=%s' % path.abspath(sect+'.xunit.xml'))
287
292
288 # Store pids of anything we start to clean up on deletion, if possible
293 # Store pids of anything we start to clean up on deletion, if possible
289 # (on posix only, since win32 has no os.kill)
294 # (on posix only, since win32 has no os.kill)
General Comments 0
You need to be logged in to leave comments. Login now