Finalize Makefile for integration test rework. (#1878)

- Part of #1833.
- Replace old targets with new ones.
- Try increased parallelism after test tweaks in #1857.
- Exclude test files from coverage analysis.
This commit is contained in:
J Logan
2026-07-01 18:25:34 -07:00
committed by GitHub
parent 4a79060595
commit 5973b9cc62
3 changed files with 14 additions and 92 deletions
+2 -2
View File
@@ -103,11 +103,11 @@ jobs:
- name: Test the container project
if: ${{ !inputs.coverage }}
run: make APP_ROOT="${APP_ROOT}" LOG_ROOT="${LOG_ROOT}" test install-kernel integration integration-new
run: make APP_ROOT="${APP_ROOT}" LOG_ROOT="${LOG_ROOT}" test install-kernel integration
- name: Test the container project with coverage
if: ${{ inputs.coverage }}
run: make APP_ROOT="${APP_ROOT}" LOG_ROOT="${LOG_ROOT}" install-kernel coverage-new
run: make APP_ROOT="${APP_ROOT}" LOG_ROOT="${LOG_ROOT}" install-kernel coverage
- name: Extract coverage percentages
if: ${{ inputs.coverage }}