diff --git a/script/vsts/platforms/linux.yml b/script/vsts/platforms/linux.yml index f0273d7a8..31510e9ec 100644 --- a/script/vsts/platforms/linux.yml +++ b/script/vsts/platforms/linux.yml @@ -25,7 +25,7 @@ jobs: CI: true CI_PROVIDER: VSTS ATOM_JASMINE_REPORTER: list - TEST_JUNIT_XML_PATH: $(Common.TestResultsDirectory) + TEST_JUNIT_XML_PATH: $(Common.TestResultsDirectory)/junit displayName: Run tests condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true')) @@ -38,7 +38,7 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFormat: JUnit - searchFolder: $(Common.TestResultsDirectory) + searchFolder: $(Common.TestResultsDirectory)/junit mergeTestResults: true testRunTitle: Linux condition: ne(variables['Atom.SkipTests'], 'true') diff --git a/script/vsts/platforms/macos.yml b/script/vsts/platforms/macos.yml index b7d5ea1f8..d97efe2a2 100644 --- a/script/vsts/platforms/macos.yml +++ b/script/vsts/platforms/macos.yml @@ -45,7 +45,7 @@ jobs: CI: true CI_PROVIDER: VSTS ATOM_JASMINE_REPORTER: list - TEST_JUNIT_XML_PATH: $(Common.TestResultsDirectory) + TEST_JUNIT_XML_PATH: $(Common.TestResultsDirectory)/junit displayName: Run tests condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true')) @@ -58,7 +58,7 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFormat: JUnit - searchFolder: $(Common.TestResultsDirectory) + searchFolder: $(Common.TestResultsDirectory)/junit mergeTestResults: true testRunTitle: MacOS condition: ne(variables['Atom.SkipTests'], 'true') diff --git a/script/vsts/platforms/windows.yml b/script/vsts/platforms/windows.yml index 48d29420b..cbdd34ff7 100644 --- a/script/vsts/platforms/windows.yml +++ b/script/vsts/platforms/windows.yml @@ -70,7 +70,7 @@ jobs: CI: true CI_PROVIDER: VSTS ATOM_JASMINE_REPORTER: list - TEST_JUNIT_XML_PATH: $(Common.TestResultsDirectory) + TEST_JUNIT_XML_PATH: $(Common.TestResultsDirectory)\junit BUILD_ARCH: $(buildArch) displayName: Run tests condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true')) @@ -85,7 +85,7 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFormat: JUnit - searchFolder: $(Agent.HomeDirectory)\test-results + searchFolder: $(Common.TestResultsDirectory)\junit mergeTestResults: true testRunTitle: Windows $(buildArch) condition: ne(variables['Atom.SkipTests'], 'true')