From f3fe4e86138549168ac55ea893aee6e0635f7bf3 Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Fri, 4 Oct 2019 15:00:55 +0300 Subject: [PATCH] Add publish results step --- azure-pipelines.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f8fc9fc3..a6c63418 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -51,4 +51,11 @@ jobs: displayName: "make app-cal" - script: bundle exec bin/ci/cucumber.rb - displayName: "cucumber tests" \ No newline at end of file + displayName: "cucumber tests" + + - task: PublishTestResults@2 + displayName: 'Publish Test Results' + inputs: + testResultsFiles: 'CalSmokeApp/reports/**/*.xml' + failTaskOnFailedTests: true + condition: always() \ No newline at end of file