Skip to content

Commit 4e19090

Browse files
committed
Add workflow input for repeating mockapi tests
1 parent 3624c39 commit 4e19090

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/android-app.yml

+11-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,11 @@ 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+
# Disabled due to flakiness.
406+
- test-type: mockapi
407+
path: android/test/mockapi/build/outputs/apk
408+
test-repeat: ${{ needs.prepare.outputs.instrumented_test_repeat || 1 }}
402409
steps:
403410
- name: Prepare report dir
404411
id: prepare-report-dir
@@ -431,7 +438,7 @@ jobs:
431438
BILLING_FLAVOR: oss
432439
INFRA_FLAVOR: prod
433440
REPORT_DIR: ${{ steps.prepare-report-dir.outputs.report_dir }}
434-
run: ./android/scripts/run-instrumented-tests.sh
441+
run: ./android/scripts/run-instrumented-tests-repeat.sh ${{ matrix.test-repeat }}
435442

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

0 commit comments

Comments
 (0)