From fa1b5a8bc925a5d7e42746fabf9e45ec207df561 Mon Sep 17 00:00:00 2001 From: Gideon Goldberg <1764158+gidsg@users.noreply.github.com> Date: Fri, 20 Dec 2024 12:14:28 +0000 Subject: [PATCH] WIP add argument for playwright to shared tests --- .github/workflows/just-run-tests.yml | 8 ++++++++ .github/workflows/run-shared-tests.yml | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/just-run-tests.yml b/.github/workflows/just-run-tests.yml index ca49e66..d84ebcb 100644 --- a/.github/workflows/just-run-tests.yml +++ b/.github/workflows/just-run-tests.yml @@ -34,6 +34,11 @@ on: default: true type: boolean description: Whether to run the python e2e tests + run_e2e_tests_python: + required: false + default: true + type: boolean + description: Whether to run the python e2e tests python_e2e_copilot_environment: description: "Copilot environment to run tests on" type: choice @@ -50,6 +55,7 @@ jobs: run_performance_tests: ${{inputs.run_performance_tests}} run_e2e_tests_application: ${{inputs.run_e2e_tests_application}} run_e2e_tests_assessment: ${{inputs.run_e2e_tests_assessment}} + run_e2e_tests_python: ${{inputs.run_e2e_tests_python}} env_name: dev secrets: FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }} @@ -65,6 +71,7 @@ jobs: run_performance_tests: ${{inputs.run_performance_tests}} run_e2e_tests_application: ${{inputs.run_e2e_tests_application}} run_e2e_tests_assessment: ${{inputs.run_e2e_tests_assessment}} + run_e2e_tests_python: ${{inputs.run_e2e_tests_python}} env_name: test secrets: FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }} @@ -80,6 +87,7 @@ jobs: run_performance_tests: ${{inputs.run_performance_tests}} run_e2e_tests_application: ${{inputs.run_e2e_tests_application}} run_e2e_tests_assessment: ${{inputs.run_e2e_tests_assessment}} + run_e2e_tests_python: ${{inputs.run_e2e_tests_python}} env_name: uat secrets: FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }} diff --git a/.github/workflows/run-shared-tests.yml b/.github/workflows/run-shared-tests.yml index 028181e..c944d56 100644 --- a/.github/workflows/run-shared-tests.yml +++ b/.github/workflows/run-shared-tests.yml @@ -46,6 +46,10 @@ on: required: false default: true type: boolean + run_e2e_tests_python: + required: false + default: true + type: boolean run_accessibility_tests: required: false default: false