From ff5c3f5a91e249694f3b76109027cf9d0c717a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Thu, 24 Aug 2023 21:55:06 +0200 Subject: Option to wait at the end of each test Changelog: Add --wait option to wait at the end of each test --- src/Main.hs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Main.hs') diff --git a/src/Main.hs b/src/Main.hs index 4e6176f..20b3da2 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -64,6 +64,9 @@ options = , Option ['V'] ["version"] (NoArg $ \opts -> opts { optShowVersion = True }) "show version and exit" + , Option [] ["wait"] + (NoArg $ to $ \opts -> opts { optWait = True }) + "wait at the end of each test" ] where to f opts = opts { optTest = f (optTest opts) } -- cgit v1.2.3