equal
deleted
inserted
replaced
491 |
491 |
492 if options.child: |
492 if options.child: |
493 return |
493 return |
494 |
494 |
495 covrun('-c') |
495 covrun('-c') |
496 omit = ','.join(map(os.path.join, [BINDIR, TESTDIR], ['*'] * 2)) |
496 omit = ','.join(os.path.join(x, '*') for x in [BINDIR, TESTDIR]) |
497 covrun('-i', '-r', '"--omit=%s"' % omit) # report |
497 covrun('-i', '-r', '"--omit=%s"' % omit) # report |
498 if options.annotate: |
498 if options.annotate: |
499 adir = os.path.join(TESTDIR, 'annotated') |
499 adir = os.path.join(TESTDIR, 'annotated') |
500 if not os.path.isdir(adir): |
500 if not os.path.isdir(adir): |
501 os.mkdir(adir) |
501 os.mkdir(adir) |