We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76d893a commit 892483cCopy full SHA for 892483c
1 file changed
azure-pipelines/templates/coverage.yml
@@ -12,7 +12,7 @@ steps:
12
organization: microsoft
13
scannerMode: CLI
14
extraProperties: |
15
- sonar.python.coverage.reportPaths=$(Build.SourcesDirectory)\**\coverage\coverage.xml
+ sonar.python.coverage.reportPaths=$(Build.SourcesDirectory)/coverage/coverage.xml
16
sonar.projectKey=microsoft_debugpy
17
18
- script: |
@@ -31,7 +31,7 @@ steps:
31
displayName: 'Publish Coverage Report'
32
inputs:
33
codeCoverageTool: Cobertura
34
- summaryFileLocation: '$(Build.SourcesDirectory)/**/coverage/coverage.xml'
35
- reportDirectory: '$(Build.SourcesDirectory)/**/coverage/html'
+ summaryFileLocation: '$(Build.SourcesDirectory)/coverage/coverage.xml'
+ reportDirectory: '$(Build.SourcesDirectory)/coverage/html'
36
failIfCoverageEmpty: true
37
condition: always()
0 commit comments