From: Stefan Behnel Date: Sun, 26 Oct 2008 17:39:02 +0000 (+0100) Subject: ignore CmdLine.py in coverage tests X-Git-Tag: 0.9.9.2.beta~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8c470d9751cfe34d5e16b4d2f04dd76051bf309a;p=cython.git ignore CmdLine.py in coverage tests --- diff --git a/runtests.py b/runtests.py index a954ea19..7538cf70 100644 --- a/runtests.py +++ b/runtests.py @@ -583,7 +583,7 @@ if __name__ == '__main__': if options.coverage: coverage.stop() - ignored_modules = ('Options', 'Version', 'DebugFlags') + ignored_modules = ('Options', 'Version', 'DebugFlags', 'CmdLine') modules = [ module for name, module in sys.modules.items() if module is not None and name.startswith('Cython.Compiler.') and