From d6fedf007919de30be1d7ee3ab4aa1606d341ef0 Mon Sep 17 00:00:00 2001 From: Czar Echavez Date: Fri, 1 Dec 2023 14:58:22 +0000 Subject: [PATCH] #2084: maybe pointing to different source might help --- .azure/azure-ci-build-pipeline.yaml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.azure/azure-ci-build-pipeline.yaml b/.azure/azure-ci-build-pipeline.yaml index bddcc86c..147b8c14 100644 --- a/.azure/azure-ci-build-pipeline.yaml +++ b/.azure/azure-ci-build-pipeline.yaml @@ -108,24 +108,12 @@ stages: testResultsFiles: 'junit/**.xml' testRunTitle: 'Publish test results' - - script: | - echo '$(System.DefaultWorkingDirectory)' && pwd && ls - displayName: 'debug root' - - - script: | - cd $(System.DefaultWorkingDirectory)/htmlcov && pwd && ls - displayName: 'debug htmlcov' - - - script: | - cat $(System.DefaultWorkingDirectory)/coverage.xml - displayName: 'debug coverage file' - - task: PublishCodeCoverageResults@1 displayName: 'Publish coverage report' inputs: codeCoverageTool: Cobertura summaryFileLocation: $(System.DefaultWorkingDirectory)/coverage.xml - pathToSources: $(System.DefaultWorkingDirectory)/src/ + pathToSources: $(System.DefaultWorkingDirectory)/ reportDirectory: $(System.DefaultWorkingDirectory)/htmlcov additionalCodeCoverageFiles: $(System.DefaultWorkingDirectory)/htmlcov/*.* failIfCoverageEmpty: true