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()