add cleanup cli arg
This commit is contained in:
parent
8b9dd47f9e
commit
98f496db72
1 changed files with 1 additions and 0 deletions
|
|
@ -23,6 +23,7 @@ def run():
|
||||||
parser.add_argument("--debug", action="store_true", help="Enable Playwright debug mode")
|
parser.add_argument("--debug", action="store_true", help="Enable Playwright debug mode")
|
||||||
parser.add_argument("--resume", action="store_true", help="Re-run the most recent test, skipping passed tests")
|
parser.add_argument("--resume", action="store_true", help="Re-run the most recent test, skipping passed tests")
|
||||||
parser.add_argument("--session_id", help="Session dir name (inside output_dir). Overwrites --resume")
|
parser.add_argument("--session_id", help="Session dir name (inside output_dir). Overwrites --resume")
|
||||||
|
parser.add_argument("--cleanup", help="Force test cleanup. Should not be necessary")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
env_paths = [Path(s) for s in args.env_paths.split(";")]
|
env_paths = [Path(s) for s in args.env_paths.split(";")]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue