Commit f42034e 1 parent ae40156 commit f42034e Copy full SHA for f42034e
File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md)
18
18
- Added a CONTRIBUTING.md.
19
19
- Replaced module CommonResourceHelper with the PowerShell Gallery module
20
20
DscResource.Common v0.2.0.
21
+ - Adding back publishing code coverage to Codecov.io.
22
+ - Add stats badge for Codecov.io in README.md.
23
+ - Fix Azure Pipelines code coverage ([ issue #236 ] ( https://github.com/dsccommunity/xFailOverCluster/issues/236 ) ).
21
24
22
25
### Changed
23
26
@@ -63,8 +66,6 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md)
63
66
DscResource.Test cannot be imported.
64
67
- Update the deploy stage so that it is skipped when merging
65
68
branch master in forks.
66
- - Adding back publishing code coverage to Codecov.io.
67
- - Add stats badge for Codecov.io in README.md.
68
69
- xClusterPreferredOwner
69
70
- Fixed broken links to examples in README.md.
70
71
- xClusterQuorum
Original file line number Diff line number Diff line change @@ -105,13 +105,6 @@ stages:
105
105
testResultsFormat : ' NUnit'
106
106
testResultsFiles : ' output/testResults/NUnit*.xml'
107
107
testRunTitle : ' Unit (Windows Server Core)'
108
- - task : PublishCodeCoverageResults@1
109
- displayName : ' Publish Code Coverage'
110
- condition : succeededOrFailed()
111
- inputs :
112
- codeCoverageTool : ' JaCoCo'
113
- summaryFileLocation : ' output/testResults/CodeCov*.xml'
114
- pathToSources : ' $(Build.SourcesDirectory)/output/$(dscBuildVariable.RepositoryName)'
115
108
- task : PublishBuildArtifacts@1
116
109
displayName : ' Publish Test Artifact'
117
110
inputs :
@@ -168,6 +161,13 @@ stages:
168
161
downloadType : ' single'
169
162
artifactName : ' testResults'
170
163
downloadPath : ' $(Build.SourcesDirectory)/output'
164
+ - task : PublishCodeCoverageResults@1
165
+ displayName : ' Publish Code Coverage'
166
+ condition : succeededOrFailed()
167
+ inputs :
168
+ codeCoverageTool : ' JaCoCo'
169
+ summaryFileLocation : ' output/testResults/JaCoCo_coverage.xml'
170
+ pathToSources : ' $(Build.SourcesDirectory)/output/$(dscBuildVariable.RepositoryName)'
171
171
- script : |
172
172
bash <(curl -s https://codecov.io/bash) -f "./output/testResults/JaCoCo_coverage.xml"
173
173
displayName: 'Upload to Codecov.io'
You can’t perform that action at this time.
0 commit comments