瀏覽代碼

fix: make --record optional for cypress tests (#18332)

version-14
Revant Nandgaonkar 2 年之前
committed by GitHub
父節點
當前提交
db3736eff3
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 6 行新增2 行删除
  1. +6
    -2
      frappe/commands/utils.py

+ 6
- 2
frappe/commands/utils.py 查看文件

@@ -841,9 +841,10 @@ def run_parallel_tests(
@click.option("--parallel", is_flag=True, help="Run UI Test in parallel mode")
@click.option("--with-coverage", is_flag=True, help="Generate coverage report")
@click.option("--ci-build-id")
@click.option("--record", is_flag=True, help="Record using Cypress Dashboard")
@pass_context
def run_ui_tests(
context, app, headless=False, parallel=True, with_coverage=False, ci_build_id=None
context, app, headless=False, parallel=True, with_coverage=False, ci_build_id=None, record=False
):
"Run UI tests"
site = get_site(context)
@@ -888,9 +889,12 @@ def run_ui_tests(
frappe.commands.popen(f"yarn add {packages} --no-lockfile")

# run for headless mode
run_or_open = "run --browser chrome --record" if headless else "open"
run_or_open = "run --browser chrome" if headless else "open"
formatted_command = f"{site_env} {password_env} {coverage_env} {cypress_path} {run_or_open}"

if record:
run_or_open += " --record"

if parallel:
formatted_command += " --parallel"



Loading…
取消
儲存