Skip to content

fix(scripts): fail the unit-test runner when the Gradle test task fails#192

Open
gmaclennan wants to merge 1 commit into
mainfrom
fix/unit-test-runner-exit-code
Open

fix(scripts): fail the unit-test runner when the Gradle test task fails#192
gmaclennan wants to merge 1 commit into
mainfrom
fix/unit-test-runner-exit-code

Conversation

@gmaclennan

Copy link
Copy Markdown
Member

./scripts/run-instrumented-tests.sh --unit-only swallowed any failure of the library's Gradle test task behind a "module name may differ" warning, so the script exited 0 even when the Kotlin test sources failed to compile — and the previous run's stale test-results XML then read as a pass. This bit for real during the PR #111 review work: a missing assertTrue import produced a green "JVM unit tests completed" run.

The module name is fixed by Expo autolinking in this repo (:comapeo-core-react-native), so the guard protected nothing. The script already runs under set -euo pipefail, so dropping the || echo makes a test-task failure abort the run with a non-zero exit.

The script is a local-dev convenience (CI invokes Gradle directly), so this only changes local behaviour.

Verified locally: --unit-only passes on a clean tree; with an intentionally-broken test source the script now exits 1 at the Gradle step instead of printing the completion message.

run_unit_tests swallowed any failure of :comapeo-core-react-native:test
with a "module name may differ" warning, so --unit-only exited 0 even
on a Kotlin compile error and stale test-results XML read as a pass.
The module name is fixed by Expo autolinking in this repo, so the guard
protects nothing; with set -e in effect, the bare invocation now aborts
the run with a non-zero exit.
@github-actions github-actions Bot added the fix Bug fix (changelog) label Jul 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

fix Bug fix (changelog)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant