Show More
@@ -285,6 +285,11 b' class IPTester(object):' | |||||
285 | # Assemble call |
|
285 | # Assemble call | |
286 | self.call_args = self.runner+self.params |
|
286 | self.call_args = self.runner+self.params | |
287 |
|
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')) | |||
|
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) | |
290 | self.pids = [] |
|
295 | self.pids = [] |
General Comments 0
You need to be logged in to leave comments.
Login now