Revert "ci: Run tests and generate coverage for all modules" (#4240)

This commit is contained in:
James Rich 2026-01-15 20:53:05 -06:00 committed by GitHub
parent 54a90a9f50
commit 73f3cac2ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 44 deletions

View file

@ -85,18 +85,7 @@ jobs:
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: |
./gradlew :app:connectedDebugAndroidTest \
:core:database:connectedDebugAndroidTest \
:core:model:connectedDebugAndroidTest \
:core:ui:connectedDebugAndroidTest \
:feature:messaging:connectedDebugAndroidTest \
:feature:node:connectedDebugAndroidTest \
:feature:settings:connectedDebugAndroidTest \
:mesh_service_example:connectedDebugAndroidTest \
koverXmlReport \
--configuration-cache \
--scan && ( killall -INT crashpad_handler || true )
script: ./gradlew connectedDebugAndroidTest koverXmlReport --configuration-cache --scan && ( killall -INT crashpad_handler || true )
- name: Upload coverage reports to Codecov
if: ${{ !cancelled() }}
@ -104,7 +93,7 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: meshtastic/Meshtastic-Android
files: build/reports/kover/xml/report.xml
files: app/build/reports/kover/xml/report.xml
- name: Upload test results to Codecov
if: ${{ !cancelled() }}