Browse Source

publish test result

pull/1516/head
Darien Raymond 6 years ago
parent
commit
d2051b910b
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
  1. 6
      azure-pipelines.template.yml

6
azure-pipelines.template.yml

@ -17,9 +17,15 @@ jobs:
go version
go get -v -t -d v2ray.com/core/...
go get -v -t -d v2ray.com/ext/...
go get -u github.com/jstemmer/go-junit-report 2>&1 | go-junit-report > report.xml
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Fetch sources'
- script: |
go test -p 1 -timeout 30m -v v2ray.com/core/...
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Test'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit' # Options: JUnit, NUnit, VSTest, xUnit
testResultsFiles: 'report.xml'
searchFolder: '$(System.DefaultWorkingDirectory)' # Optional

Loading…
Cancel
Save