From ba026fdde89f665932c22a687183278862471a45 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 5 Sep 2008 12:08:45 +0200 Subject: [PATCH] enable source annotations in test runner by default --- runtests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index e902035d..e90c6850 100644 --- a/runtests.py +++ b/runtests.py @@ -460,8 +460,11 @@ if __name__ == '__main__': action="store_true", default=False, help="collect source coverage data for the Compiler") parser.add_option("-A", "--annotate", dest="annotate_source", - action="store_true", default=False, + action="store_true", default=True, help="generate annotated HTML versions of the test source files") + parser.add_option("--no-annotate", dest="annotate_source", + action="store_false", + help="do not generate annotated HTML versions of the test source files") parser.add_option("-v", "--verbose", dest="verbosity", action="count", default=0, help="display test progress, pass twice to print test names") -- 2.26.2