From 18d70400158720a703331fb7c2fa6e43e1492c47 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Peters Date: Wed, 22 Feb 2023 15:34:15 +0100 Subject: [PATCH] Fix codecov path --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 34d1c63..48dd895 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -177,7 +177,7 @@ stages: summaryFileLocation: '$(Build.SourcesDirectory)/$(buildFolderName)/$(testResultFolderName)/JaCoCo_coverage.xml' pathToSources: '$(Build.SourcesDirectory)/$(sourceFolderName)/' - script: | - bash <(curl -s https://codecov.io/bash) -f "./$(buildFolderName)/$(testResultFolderName)/JaCoCo_coverage.xml" + bash <(curl -s https://codecov.io/bash) -f "$(Build.SourcesDirectory)/$(buildFolderName)/$(testResultFolderName)/JaCoCo_coverage.xml" displayName: 'Publish Code Coverage to Codecov.io' condition: succeededOrFailed()