From 8a4978cf9625f82ee2cacd4843a8fc6df2c56a08 Mon Sep 17 00:00:00 2001 From: Czar Echavez Date: Fri, 1 Dec 2023 15:59:34 +0000 Subject: [PATCH] #2084: remove 80% requirement - causes tests to fail --- .azure/azure-ci-build-pipeline.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure/azure-ci-build-pipeline.yaml b/.azure/azure-ci-build-pipeline.yaml index 61b4cfc3..2dffe61a 100644 --- a/.azure/azure-ci-build-pipeline.yaml +++ b/.azure/azure-ci-build-pipeline.yaml @@ -108,7 +108,7 @@ stages: testResultsFiles: 'junit/**.xml' testRunTitle: 'Publish test results' - - publish: $(System.DefaultWorkingDirectory)/**/htmlcov/ + - publish: $(System.DefaultWorkingDirectory)/htmlcov/ artifact: coverage_report - task: PublishCodeCoverageResults@1 @@ -117,6 +117,6 @@ stages: codeCoverageTool: Cobertura summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml' pathToSources: '$(System.DefaultWorkingDirectory)/src' - reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov/' - additionalCodeCoverageFiles: '$(System.DefaultWorkingDirectory)/**/htmlcov/*.*' + # reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov/' + # additionalCodeCoverageFiles: '$(System.DefaultWorkingDirectory)/**/htmlcov/*.*' failIfCoverageEmpty: true