From c527459465d7f0509cb077d20641783159ba0c5e Mon Sep 17 00:00:00 2001 From: Bert Willekens Date: Tue, 29 Oct 2024 16:34:05 +0100 Subject: [PATCH] Allow doctest optionflag ELLIPSIS. This gives me some flexibility. --- bashtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashtest.py b/bashtest.py index 87aa276..9821a93 100644 --- a/bashtest.py +++ b/bashtest.py @@ -84,7 +84,7 @@ def main(): global CHECK_EXITCODE args = parseargs() - optionflags = doctest.NORMALIZE_WHITESPACE + optionflags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS if not args.files: args.files = glob.glob('*.bashtest')