Report test suites individually

This commit is contained in:
Ash Wilson
2019-02-07 08:49:42 -05:00
parent 55874e8353
commit 65661ba8a3
3 changed files with 6 additions and 9 deletions

View File

@@ -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

View File

@@ -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: |

View File

@@ -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