Terms
Description
Description
We need to add a job to our existing GitHub Actions workflow (android_ci.yml) to run instrumentation tests for our Android app. This will ensure UI and integration tests are executed automatically on every pull request to the main branch, improving app reliability.
Tasks
- Add a new job to
.github/workflows/android_ci.yml to run instrumentation tests.
- Configure the job to:
- Run instrumentation tests with the command:
./gradlew connectedAndroidTest.
- Test the job to confirm tests run successfully in CI.
Command to Run Tests Locally
To run instrumentation tests locally, connect a device or emulator and use:
./gradlew connectedAndroidTest
Contribution
Happy to help!
Terms
Description
Description
We need to add a job to our existing GitHub Actions workflow (
android_ci.yml) to run instrumentation tests for our Android app. This will ensure UI and integration tests are executed automatically on every pull request to themainbranch, improving app reliability.Tasks
.github/workflows/android_ci.ymlto run instrumentation tests../gradlew connectedAndroidTest.Command to Run Tests Locally
To run instrumentation tests locally, connect a device or emulator and use:
Contribution
Happy to help!