Show More
@@ -331,6 +331,10 b' def outputcoverage(options):' | |||
|
331 | 331 | omit = ','.join(omit) |
|
332 | 332 | |
|
333 | 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 | 338 | covrun('-i', '-r', '"--omit=%s"' % omit) # report |
|
335 | 339 | if options.annotate: |
|
336 | 340 | adir = os.path.join(TESTDIR, 'annotated') |
General Comments 0
You need to be logged in to leave comments.
Login now