From 86192bb6012bb5fed04e6a0a90bb73dfb42d6d03 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sun, 19 May 2019 00:26:46 -0400 Subject: [PATCH] make sure we publish test results from test runs Signed-off-by: Dan Ryan --- .azure-pipelines/jobs/run-tests-windows.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.azure-pipelines/jobs/run-tests-windows.yml b/.azure-pipelines/jobs/run-tests-windows.yml index 05573b10..8640683b 100644 --- a/.azure-pipelines/jobs/run-tests-windows.yml +++ b/.azure-pipelines/jobs/run-tests-windows.yml @@ -16,3 +16,10 @@ steps: - template: ../steps/create-virtualenv-windows.yml - template: ../steps/run-tests-windows.yml + +- task: PublishTestResults@2 + displayName: Publish Test Results + inputs: + testResultsFiles: '**/test-results.xml' + testRunTitle: 'Python $(python.version)' + condition: succeededOrFailed()