chore(ui-tests): raise click Exit exception

This commit is contained in:
David 2024-11-29 13:39:03 +01:00
parent 318a47219c
commit aec58a9ad0
No known key found for this signature in database
GPG key ID: AB15A6AF1101390D

View file

@ -484,9 +484,9 @@ def run_ui_tests(
click.secho("Running Cypress...", fg="yellow")
try:
frappe.commands.popen(formatted_command, cwd=app_base_path, raise_err=True)
except subprocess.CalledProcessError:
except subprocess.CalledProcessError as e:
click.secho("Cypress tests failed", fg="red")
sys.exit(1)
raise click.exceptions.Exit(1) from e
commands = [