tests: fix omit path list stable
authorMarkus Zapke-Gr?ndemann <info@keimlink.de>
Wed, 11 Jan 2012 15:37:25 +0100
branchstable
changeset 1037 bef1d9649208
parent 1035 53da6702a77f
child 1038 62b7a0759ee3
tests: fix omit path list All directories need a trailing asterisk. Otherwise the files are not excluded from coverage. [ original upstream message ]
tests/run-tests.py
--- a/tests/run-tests.py	Thu Dec 08 14:32:44 2011 -0600
+++ b/tests/run-tests.py	Wed Jan 11 15:37:25 2012 +0100
@@ -493,7 +493,7 @@
         return
 
     covrun('-c')
-    omit = ','.join([BINDIR, TESTDIR])
+    omit = ','.join(map(os.path.join, [BINDIR, TESTDIR], ['*'] * 2))
     covrun('-i', '-r', '"--omit=%s"' % omit) # report
     if options.annotate:
         adir = os.path.join(TESTDIR, 'annotated')