Skip to content

Commit

Permalink
WIP add argument for playwright to shared tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gidsg committed Dec 20, 2024
1 parent 837592c commit fa1b5a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/just-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-shared-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fa1b5a8

Please sign in to comment.