Skip to content

Commit 681e420

Browse files
author
Janne Rönkkö
committed
Add support for parallel E2E tests
1 parent ce0ea87 commit 681e420

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

github-actions/run-ci/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ runs:
144144
- name: Run e2e tests
145145
env:
146146
CYPRESS_TESTS_KEPT_IN_MEMORY: "${{ inputs.cypress_tests_kept_in_memory }}"
147-
uses: HSLdevcom/jore4-tools/github-actions/run-cypress-tests@run-cypress-tests-v3
147+
uses: HSLdevcom/jore4-tools/github-actions/run-cypress-tests@split-e2e
148148
with:
149149
test-tags: "${{ inputs.test-tags }}"

github-actions/run-cypress-tests/action.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ runs:
2424
docker exec \
2525
-e TEST_TAGS="${{ inputs.test-tags }}" \
2626
-e TEST_VIDEO="${{ inputs.video }}" \
27+
-e SPLIT="${{ strategy.job-total }}" \
28+
-e SPLIT_INDEX="${{ strategy.job-index }}" \
29+
-e SPLIT_OUTPUT_FILE=/e2e/timings.out.json \
2730
cypress /e2e/cypress/run_cypress_in_4K_xvfb.sh
2831
shell: bash
2932

@@ -32,16 +35,23 @@ runs:
3235
if: always()
3336
run: |
3437
docker cp cypress:/e2e/cypress/reports ${{ github.workspace }}/test-reports || echo "No reports"
38+
docker cp cypress:/e2e/timings.out.json ${{ github.workspace }}/timings.out.json || echo "No timings file"
3539
shell: bash
3640

3741
- name: Upload test reports as an artifact
3842
# should be run even if the tests fail
3943
if: always()
4044
uses: actions/upload-artifact@v4
4145
with:
42-
name: cypress-docker-reports
46+
name: "cypress-docker-report-${{ strategy.job-index }}-of-${{ strategy.job-total }}"
4347
path: ${{ github.workspace }}/test-reports
4448

49+
- name: Upload cypress-split timings file
50+
uses: actions/upload-artifact@v4
51+
with:
52+
name: "cypress-timings-${{ strategy.job-index }}-of-${{ strategy.job-total }}"
53+
path: ${{ github.workspace }}/timings.out.json
54+
4555
- name: Fail the job
4656
# should fail the job if the tests fail
4757
if: ${{ failure() }}

0 commit comments

Comments
 (0)