From 1d531aff421332b6d943359617df42ca4e3e76e8 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Thu, 9 Jan 2025 16:08:30 +0000 Subject: [PATCH] Updated CI to only report on automlst and fixed report publishing --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 10c1021..2f5fe0d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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") {