From c9539b2228e268ed38a05a0bbdcfa5d3bb7718a3 Mon Sep 17 00:00:00 2001 From: xingwenyang Date: Fri, 22 Jul 2022 15:00:29 +0800 Subject: [PATCH] remove rerun default value 'true' --- flybirds/cli/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flybirds/cli/__main__.py b/flybirds/cli/__main__.py index 0b70321f..1c32edb6 100644 --- a/flybirds/cli/__main__.py +++ b/flybirds/cli/__main__.py @@ -50,7 +50,7 @@ def runner( help="User-defined parameters. e.g. --define headless=false.", ), rerun: bool = typer.Option( - True, + None, "--rerun/--no-rerun", help="Whether the failed scenario needs to be rerun", ),