##// END OF EJS Templates
tests: delete parallel coverage files after combining
Dirkjan Ochtman -
r8696:73aa0510 default
parent child Browse files
Show More
@@ -331,6 +331,10 b' def outputcoverage(options):'
331 omit = ','.join(omit)
331 omit = ','.join(omit)
332
332
333 covrun('-c') # combine from parallel processes
333 covrun('-c') # combine from parallel processes
334 for fn in os.listdir(TESTDIR):
335 if fn.startswith('.coverage.'):
336 os.unlink(os.path.join(TESTDIR, fn))
337
334 covrun('-i', '-r', '"--omit=%s"' % omit) # report
338 covrun('-i', '-r', '"--omit=%s"' % omit) # report
335 if options.annotate:
339 if options.annotate:
336 adir = os.path.join(TESTDIR, 'annotated')
340 adir = os.path.join(TESTDIR, 'annotated')
General Comments 0
You need to be logged in to leave comments. Login now