Skip to content

Commit 7b2ebd9

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 7b2ebd9

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.github/workflows/android-app.yml

+17-5
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,11 +401,14 @@ 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 (test-repeat='0') due to flakiness unless overridden by input.
406+
- test-type: mockapi
407+
path: android/test/mockapi/build/outputs/apk
408+
test-repeat: ${{ github.event.inputs.mockapi_test_repeat || 0 }}
402409
steps:
403410
- name: Prepare report dir
411+
if: ${{ matrix.test-repeat != 0 }}
404412
id: prepare-report-dir
405413
env:
406414
INNER_REPORT_DIR: /tmp/${{ matrix.test-type }}-${{ github.run_id }}-${{ github.run_attempt }}
@@ -409,33 +417,37 @@ jobs:
409417
echo "report_dir=$INNER_REPORT_DIR" >> $GITHUB_OUTPUT
410418
411419
- name: Checkout repository
420+
if: ${{ matrix.test-repeat != 0 }}
412421
uses: actions/checkout@v4
413422

414423
# Using v3 due to v4 being very slow for this artifact.
415424
- uses: actions/download-artifact@v3
425+
if: ${{ matrix.test-repeat != 0 }}
416426
with:
417427
name: apks
418428
path: android/app/build/outputs/apk
419429

420430
# Using v3 due to v4 being very slow for this artifact.
421431
- uses: actions/download-artifact@v3
432+
if: ${{ matrix.test-repeat != 0 }}
422433
with:
423434
name: ${{ matrix.test-type }}-instrumentation-apks
424435
path: ${{ matrix.path }}
425436

426437
- name: Run instrumented test script
438+
if: ${{ matrix.test-repeat != 0 }}
427439
shell: bash -ieo pipefail {0}
428440
env:
429441
AUTO_FETCH_TEST_HELPER_APKS: true
430442
TEST_TYPE: ${{ matrix.test-type }}
431443
BILLING_FLAVOR: oss
432444
INFRA_FLAVOR: prod
433445
REPORT_DIR: ${{ steps.prepare-report-dir.outputs.report_dir }}
434-
run: ./android/scripts/run-instrumented-tests.sh
446+
run: ./android/scripts/run-instrumented-tests-repeat.sh ${{ matrix.test-repeat }}
435447

436448
- name: Upload instrumentation report (${{ matrix.test-type }})
437449
uses: actions/upload-artifact@v4
438-
if: always()
450+
if: ${{ matrix.test-repeat != 0 }}
439451
with:
440452
name: ${{ matrix.test-type }}-instrumentation-report
441453
path: ${{ steps.prepare-report-dir.outputs.report_dir }}

0 commit comments

Comments
 (0)