Updated CI to only report on automlst and fixed report publishing

This commit is contained in:
Harrison Deng 2025-01-09 16:08:30 +00:00
parent 8febfad282
commit 1d531aff42

2
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ pipeline {
steps {
sh returnStatus: true, script: "python -m pytest --junitxml=test_results.xml --cov=. --cov-report xml:coverage.xml"
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test_results.xml', stopProcessingIfError: true)]
recordCoverage(tools: [[parser: 'COBERTURA', pattern: './coverage.xml']])
recordCoverage(tools: [[parser: 'COBERTURA', pattern: 'coverage.xml']])
}
}
stage("build") {