From e127b282a4ad733db412bd4c17f102cae2b0fefe Mon Sep 17 00:00:00 2001 From: Andrey Prokopyuk Date: Tue, 8 Sep 2026 18:42:26 +0300 Subject: [PATCH] fix: run release preflight UI tests with their debug host --- scripts/build-release-apks.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/build-release-apks.sh b/scripts/build-release-apks.sh index 44e22c0..1cb58de 100755 --- a/scripts/build-release-apks.sh +++ b/scripts/build-release-apks.sh @@ -158,7 +158,9 @@ echo "Building initial native AAR for $first_android_abi" echo "Running Android unit tests" ( cd "$project_dir" - ./gradlew testReleaseUnitTest + # Compose's test host Activity is supplied by debugImplementation(ui-test-manifest). + # Run the same complete JVM suite as PR CI without packaging test hosts in release APKs. + ./gradlew testDebugUnitTest ) for target in "${targets[@]}"; do