diff --git a/script/vsts/platforms/linux.yml b/script/vsts/platforms/linux.yml index 7038c13dc..5dd6a22b0 100644 --- a/script/vsts/platforms/linux.yml +++ b/script/vsts/platforms/linux.yml @@ -26,6 +26,7 @@ jobs: CI_PROVIDER: VSTS ATOM_JASMINE_REPORTER: list TEST_JUNIT_XML_ROOT: $(Common.TestResultsDirectory)/junit + TEST_JUNIT_XML_RUN: Linux- displayName: Run tests condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true')) @@ -39,9 +40,7 @@ jobs: inputs: testResultsFormat: JUnit searchFolder: $(Common.TestResultsDirectory)/junit - testResultsFiles: "**/test-results.xml" - mergeTestResults: true - testRunTitle: Linux + testResultsFiles: "**/TEST-*.xml" condition: ne(variables['Atom.SkipTests'], 'true') - task: PublishBuildArtifacts@1 diff --git a/script/vsts/platforms/macos.yml b/script/vsts/platforms/macos.yml index 57dd01112..c0341c38e 100644 --- a/script/vsts/platforms/macos.yml +++ b/script/vsts/platforms/macos.yml @@ -46,6 +46,7 @@ jobs: CI_PROVIDER: VSTS ATOM_JASMINE_REPORTER: list TEST_JUNIT_XML_ROOT: $(Common.TestResultsDirectory)/junit + TEST_JUNIT_XML_RUN: MacOS- displayName: Run tests condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true')) @@ -59,9 +60,7 @@ jobs: inputs: testResultsFormat: JUnit searchFolder: $(Common.TestResultsDirectory)/junit - testResultsFiles: "**/test-results.xml" - mergeTestResults: true - testRunTitle: MacOS + testResultsFiles: "**/TEST-*.xml" condition: ne(variables['Atom.SkipTests'], 'true') - script: | diff --git a/script/vsts/platforms/windows.yml b/script/vsts/platforms/windows.yml index 554dcf0ea..0bc4cbd1c 100644 --- a/script/vsts/platforms/windows.yml +++ b/script/vsts/platforms/windows.yml @@ -71,6 +71,7 @@ jobs: CI_PROVIDER: VSTS ATOM_JASMINE_REPORTER: list TEST_JUNIT_XML_ROOT: $(Common.TestResultsDirectory)\junit + TEST_JUNIT_XML_RUN: Windows-$(buildArch)- BUILD_ARCH: $(buildArch) displayName: Run tests condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true')) @@ -86,9 +87,7 @@ jobs: inputs: testResultsFormat: JUnit searchFolder: $(Common.TestResultsDirectory)\junit - testResultsFiles: "**/test-results.xml" - mergeTestResults: true - testRunTitle: Windows $(buildArch) + testResultsFiles: "**/TEST-*.xml" condition: ne(variables['Atom.SkipTests'], 'true') - task: PublishBuildArtifacts@1