From c6a3eda478ff5169bf69c1cf097464cf911b94e8 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Tue, 3 Feb 2026 19:37:22 -0300 Subject: [PATCH] ci: pass test paths to metrics script --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3daa799..3a5d16a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -140,8 +140,10 @@ spec: container('builder') { sh ''' set -euo pipefail - docker run --rm -v "$PWD/build:/out" atlasbot-test \ - python scripts/publish_test_metrics.py + docker run --rm -v "$PWD/build:/out" \ + -e JUNIT_PATH=/out/junit.xml \ + -e COVERAGE_PATH=/out/coverage.json \ + atlasbot-test python scripts/publish_test_metrics.py ''' } }