ci: pass test paths to metrics script

This commit is contained in:
Brad Stein 2026-02-03 19:37:22 -03:00
parent a25b08b870
commit c6a3eda478

6
Jenkinsfile vendored
View File

@ -140,8 +140,10 @@ spec:
container('builder') { container('builder') {
sh ''' sh '''
set -euo pipefail set -euo pipefail
docker run --rm -v "$PWD/build:/out" atlasbot-test \ docker run --rm -v "$PWD/build:/out" \
python scripts/publish_test_metrics.py -e JUNIT_PATH=/out/junit.xml \
-e COVERAGE_PATH=/out/coverage.json \
atlasbot-test python scripts/publish_test_metrics.py
''' '''
} }
} }