From 1fa97e402fa821d33551a1b9b83a9d7aca296285 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 14 Dec 2023 14:01:59 +0100 Subject: [PATCH] update cli help --- pytest_abra/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytest_abra/cli.py b/pytest_abra/cli.py index dfcf90a..ca39cf2 100644 --- a/pytest_abra/cli.py +++ b/pytest_abra/cli.py @@ -18,8 +18,8 @@ def run(): parser = argparse.ArgumentParser() parser.add_argument("--version", "-V", action="version", version=get_version(), help="output the version number") parser.add_argument("--env_paths", type=str, help="List of loaded env files separated with ;", required=True) - parser.add_argument("--recipes_dir", type=Path, help="List of loaded env files separated with ;", required=True) - parser.add_argument("--output_dir", type=Path, help="List of loaded env files separated with ;", required=True) + parser.add_argument("--recipes_dir", type=Path, help="Dir of abra recipes and respective runners", required=True) + parser.add_argument("--output_dir", type=Path, help="Dir of test outputs", required=True) parser.add_argument("--timeout", type=int, help="Set Playwright timeout in ms", default=20_000) 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")