Skip to content

Commit 2e97dd4

Browse files
committed
Fix an hang on problem.
https: //github.com/ReactiveCircus/android-emulator-runner/issues/385#issuecomment-2492035091 Change-Id: Id0dc3b07e9836cb4f3704450e2eb520412ba73b9
1 parent e653f75 commit 2e97dd4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/Build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,11 @@ jobs:
204204
- name: Run local tests (including Roborazzi) for the combined coverage report (only API 34)
205205
if: matrix.api-level == 34
206206
# There is no need to verify Roborazzi tests to generate coverage.
207-
run: ./gradlew testDemoDebugUnitTest -Proborazzi.test.verify=false # Add Prod if we ever add JVM tests for prod
207+
# && killall -INT crashpad_handler || true
208+
# came from https://github.com/ReactiveCircus/android-emulator-runner/issues/385#issuecomment-2492035091
209+
run: |
210+
# Add Prod if we ever add JVM tests for prod
211+
./gradlew testDemoDebugUnitTest -Proborazzi.test.verify=false && killall -INT crashpad_handler || true
208212
209213
# Add `createProdDebugUnitTestCoverageReport` if we ever add JVM tests for prod
210214
- name: Generate coverage reports for Debug variants (only API 34)

0 commit comments

Comments
 (0)