From: Ɓukasz Langa Date: Sat, 4 Dec 2010 13:48:13 +0000 (+0000) Subject: support for checking test coverage added. X-Git-Tag: v3.2b1~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=535c0773a5df9ffbb47861e880e11c27a1282314;p=python support for checking test coverage added. 70% coverage at the moment (not tragic but needs work). --- diff --git a/Lib/test/test_cfgparser.py b/Lib/test/test_cfgparser.py index 24158ad104..2ea80dcd6c 100644 --- a/Lib/test/test_cfgparser.py +++ b/Lib/test/test_cfgparser.py @@ -2,8 +2,9 @@ import collections import configparser import io import os -import unittest +import sys import textwrap +import unittest import warnings from test import support @@ -1084,6 +1085,17 @@ def test_main(): ConfigParserTestCaseNonStandardDefaultSection, ) +def test_coverage(coverdir): + trace = support.import_module('trace') + tracer=trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0, + count=1) + tracer.run('test_main()') + r=tracer.results() + print("Writing coverage results...") + r.write_results(show_missing=True, summary=True, coverdir=coverdir) if __name__ == "__main__": - test_main() + if "-c" in sys.argv: + test_coverage('/tmp/cmd.cover') + else: + test_main()