Skip to content

Commit

Permalink
Add Test Run Title to CI (#61)
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
PlagueHO authored and johlju committed Dec 31, 2019
1 parent 5332a42 commit cdedbb7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated the CI pipeline files to the latest template.
- Changed unit tests to handle missing DscResource.Test better.
- Changed `azure-pipeline.yml` to match current pattern ([Issue #59](https://github.com/dsccommunity/WSManDsc/issues/59)).
- Set `testRunTitle` for PublishTestResults steps so that a helpful name is
displayed in Azure DevOps for each test run.

### Deprecated

Expand Down
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ stages:
inputs:
testResultsFormat: 'NUnit'
testResultsFiles: 'output/testResults/NUnit*.xml'
testRunTitle: 'HQRM'
condition: succeededOrFailed()

- job: Test_Unit
Expand Down Expand Up @@ -96,6 +97,7 @@ stages:
inputs:
testResultsFormat: 'NUnit'
testResultsFiles: 'output/testResults/NUnit*.xml'
testRunTitle: 'Unit'
condition: succeededOrFailed()

- task: PublishCodeCoverageResults@1
Expand Down Expand Up @@ -135,6 +137,7 @@ stages:
inputs:
testResultsFormat: 'NUnit'
testResultsFiles: 'output/testResults/NUnit*.xml'
testRunTitle: 'Integration'
condition: succeededOrFailed()

- stage: Deploy
Expand Down

0 comments on commit cdedbb7

Please sign in to comment.