From 535c0773a5df9ffbb47861e880e11c27a1282314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Langa?= Date: Sat, 4 Dec 2010 13:48:13 +0000 Subject: support for checking test coverage added. 70% coverage at the moment (not tragic but needs work). --- Lib/test/test_cfgparser.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_cfgparser.py b/Lib/test/test_cfgparser.py index 24158ad..2ea80dc 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() -- cgit v0.12