[llvm-commits] [LNT] r161341 - /lnt/trunk/tests/.coveragerc

Daniel Dunbar daniel at zuster.org
Mon Aug 6 13:03:08 PDT 2012


Author: ddunbar
Date: Mon Aug  6 15:03:07 2012
New Revision: 161341

URL: http://llvm.org/viewvc/llvm-project?rev=161341&view=rev
Log:
tests: Ignore templates in coverage report.

Modified:
    lnt/trunk/tests/.coveragerc

Modified: lnt/trunk/tests/.coveragerc
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/tests/.coveragerc?rev=161341&r1=161340&r2=161341&view=diff
==============================================================================
--- lnt/trunk/tests/.coveragerc (original)
+++ lnt/trunk/tests/.coveragerc Mon Aug  6 15:03:07 2012
@@ -7,7 +7,11 @@
 [html]
 directory = coverage_html_report
 
+[report]
 # Exclude external code from the coverage report. Note that this is relative to
 # our location.
-[report]
-omit = ../lnt/external/*
\ No newline at end of file
+#
+# We also exclude Jinja templates from the coverage report, the coverage module
+# isn't equipped to handle them.
+omit = ../lnt/external/*
+       ../lnt/server/ui/templates/*





More information about the llvm-commits mailing list