From 453f89f1b2a764c15db2f8fdec8cca958c11c803 Mon Sep 17 00:00:00 2001 From: Christopher Bartz Date: Thu, 2 Jul 2026 11:17:45 +0000 Subject: [PATCH] fix(ci): generate coverage XML for manager app so TiCS can ingest it The github-runner-manager coverage-report tox env only ran `coverage report` (terminal summary) and never `coverage xml`, so no XML report was produced for the manager app. TiCS scans the workspace for coverage XML and was blocked with nothing to ingest. Add `coverage xml -o coverage/coverage.xml`, matching the root tox.ini. --- github-runner-manager/tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/github-runner-manager/tox.ini b/github-runner-manager/tox.ini index a7b7accb8a..d92a54c3d0 100644 --- a/github-runner-manager/tox.ini +++ b/github-runner-manager/tox.ini @@ -89,6 +89,7 @@ deps = pytest -r{toxinidir}/requirements.txt commands = + coverage xml -o coverage/coverage.xml coverage report [testenv:static]