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 ''' } }