From 31a8cb98d5dfd1c89d4d24f0754828694bf784a6 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Sun, 29 Sep 2024 13:45:19 -0700 Subject: [PATCH] fix: CI remove cypress command --headed I don't understand how this line got in here but it breaks thins. Somehow the last run on the PR's CI did not include this one line, yet it's in there in my PR. Maybe some weird merge conflict thing while squashing/merging? I don't get it. Anyhow this fixes things. Let's merge quick as CI is broken --- scripts/cypress_run.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/cypress_run.py b/scripts/cypress_run.py index 2d752b69a66c8..cef760e815b32 100644 --- a/scripts/cypress_run.py +++ b/scripts/cypress_run.py @@ -51,7 +51,6 @@ def run_cypress_for_test_file( if use_dashboard: cmd = ( f"{XVFB_PRE_CMD} " - f"--headed " f'{cypress_cmd} --spec "{test_file}" --browser {browser} ' f"--record --group {group} --tag {REPO},{GITHUB_EVENT_NAME} " f"--parallel --ci-build-id {build_id} "