]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
update Makefile and coverage2el.py to coverage-3.4
authorBrian Warner <warner@lothar.com>
Thu, 25 Nov 2010 20:38:32 +0000 (12:38 -0800)
committerBrian Warner <warner@lothar.com>
Thu, 25 Nov 2010 20:38:32 +0000 (12:38 -0800)
It might still work with coverage-3.3 if you run with COVERAGE_OMIT=""

Makefile
misc/coding_tools/coverage2el.py

index 316c7d1fb600c0852d775d27088329c75554c83e..a5c11adcf2c7ad1ab0f154745d21c8d817e5957c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -132,6 +132,8 @@ quicktest-coverage:
        $(PYTHON) misc/build_helpers/run-with-pythonpath.py trial --reporter=bwverbose-coverage $(TEST)
 # on my laptop, "quicktest" takes 239s, "quicktest-coverage" takes 304s
 
+# --include appeared in coverage-3.4
+COVERAGE_OMIT=--include '$(CURDIR)/src/allmydata/*' --omit '$(CURDIR)/src/allmydata/test/*'
 coverage-output:
        rm -rf coverage-html
        coverage html -i -d coverage-html $(COVERAGE_OMIT)
index 7d03a273c52833c9cb2bbca70866d807305bb166..f2b7ee4baf7cd718a7f15dcd194c9f63b14f7c64 100644 (file)
@@ -1,10 +1,20 @@
 
+import os.path
 from coverage import coverage, summary, misc
 
 class ElispReporter(summary.SummaryReporter):
     def report(self):
-        self.find_code_units(None, ["/System", "/Library", "/usr/lib",
-                                    "support/lib", "src/allmydata/test"])
+        try:
+            # coverage-3.4 has both omit= and include= . include= is applied
+            # first, then omit= removes items from what's left. These are
+            # tested with fnmatch, against fully-qualified filenames.
+            self.find_code_units(None,
+                                 omit=[os.path.abspath("src/allmydata/test/*")],
+                                 include=[os.path.abspath("src/allmydata/*")])
+        except TypeError:
+            # coverage-3.3 only had omit=
+            self.find_code_units(None, ["/System", "/Library", "/usr/lib",
+                                        "support/lib", "src/allmydata/test"])
 
         out = open(".coverage.el", "w")
         out.write("""