Skip to content

Commit f20a0d4

Browse files
committed
Add workflow input for repeating mockapi tests
NOTE: This PR keeps mockapi tests disabled due to their current flakiness. The work to address that and enable the GH tests will be part of a different PR.
1 parent 3624c39 commit f20a0d4

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/android-app.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ on:
3838
description: Run firebase tests
3939
type: boolean
4040
required: false
41+
mockapi_test_repeat:
42+
description: Mockapi test repeat
43+
default: '1'
44+
required: true
45+
type: string
4146
# Build if main is updated to ensure up-to-date caches are available
4247
push:
4348
branches: [main]
@@ -396,9 +401,12 @@ jobs:
396401
include:
397402
- test-type: app
398403
path: android/app/build/outputs/apk
399-
# Disabled due to flakiness.
400-
#- test-type: mockapi
401-
# path: android/test/mockapi/build/outputs/apk
404+
test-repeat: 1
405+
- test-type: mockapi
406+
path: android/test/mockapi/build/outputs/apk
407+
# Disabled (test-repeat='0') due to flakiness unless the workflow input is set.
408+
test-repeat: ${{ github.event.inputs.mockapi_test_repeat || 0 }}
409+
if: ${{ matrix.test-repeat }} != 0
402410
steps:
403411
- name: Prepare report dir
404412
id: prepare-report-dir
@@ -431,7 +439,7 @@ jobs:
431439
BILLING_FLAVOR: oss
432440
INFRA_FLAVOR: prod
433441
REPORT_DIR: ${{ steps.prepare-report-dir.outputs.report_dir }}
434-
run: ./android/scripts/run-instrumented-tests.sh
442+
run: ./android/scripts/run-instrumented-tests-repeat.sh ${{ matrix.test-repeat }}
435443

436444
- name: Upload instrumentation report (${{ matrix.test-type }})
437445
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)