match arg names

This commit is contained in:
Daniel 2023-12-07 22:13:32 +01:00
parent 349bf9f053
commit b7a8ed1f86
3 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ def run():
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")
args = parser.parse_args()
ENV_FILES = [Path(s) for s in args.env_paths.split(";")]
env_paths = [Path(s) for s in args.env_paths.split(";")]
# -------------------------- enable playwright debug ------------------------- #
@ -43,7 +43,7 @@ def run():
# ---------------------------- initialize and run ---------------------------- #
coordinator = Coordinator(
env_paths_list=ENV_FILES,
env_paths=env_paths,
output_dir=args.output_dir,
session_id=session_id,
recipes_dir=args.recipes_dir,