Skip to content

Commit

Permalink
Add publish results step
Browse files Browse the repository at this point in the history
  • Loading branch information
vsafonkin committed Oct 4, 2019
1 parent cd32f91 commit f3fe4e8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,11 @@ jobs:
displayName: "make app-cal"

- script: bundle exec bin/ci/cucumber.rb
displayName: "cucumber tests"
displayName: "cucumber tests"

- task: PublishTestResults@2
displayName: 'Publish Test Results'
inputs:
testResultsFiles: 'CalSmokeApp/reports/**/*.xml'
failTaskOnFailedTests: true
condition: always()

0 comments on commit f3fe4e8

Please sign in to comment.