From 847f7aff4c68b57d80833e4e726dbe9d338b2985 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Tue, 5 Feb 2019 20:12:03 -0500 Subject: [PATCH] Use searchFolder and mergeTestResults --- script/vsts/platforms/linux.yml | 3 ++- script/vsts/platforms/macos.yml | 3 ++- script/vsts/platforms/windows.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/script/vsts/platforms/linux.yml b/script/vsts/platforms/linux.yml index b1f7bb688..8b88d9273 100644 --- a/script/vsts/platforms/linux.yml +++ b/script/vsts/platforms/linux.yml @@ -32,7 +32,8 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFormat: JUnit - testResultsFiles: $(Agent.HomeDirectory)/test-results/TEST-*.xml + searchFolder: $(Agent.HomeDirectory)/test-results + mergeTestResults: true testRunTitle: Linux condition: succeededOrFailed() diff --git a/script/vsts/platforms/macos.yml b/script/vsts/platforms/macos.yml index e12e83747..478a927a1 100644 --- a/script/vsts/platforms/macos.yml +++ b/script/vsts/platforms/macos.yml @@ -52,7 +52,8 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFormat: JUnit - testResultsFiles: $(Agent.HomeDirectory)/test-results/TEST-*.xml + searchFolder: $(Agent.HomeDirectory)/test-results + mergeTestResults: true testRunTitle: MacOS condition: succeededOrFailed() diff --git a/script/vsts/platforms/windows.yml b/script/vsts/platforms/windows.yml index 478c68fb1..a5cc2e97b 100644 --- a/script/vsts/platforms/windows.yml +++ b/script/vsts/platforms/windows.yml @@ -78,7 +78,8 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFormat: JUnit - testResultsFiles: $(Agent.HomeDirectory)/test-results/TEST-*.xml + searchFolder: $(Agent.HomeDirectory)\test-results + mergeTestResults: true testRunTitle: Windows $(buildArch) condition: succeededOrFailed()