Browse Source

fix test script

Darien Raymond 6 years ago
parent
commit
ef16edea51
1 changed files with 2 additions and 2 deletions
  1. 2 2
      azure-pipelines.template.yml

+ 2 - 2
azure-pipelines.template.yml

@@ -17,11 +17,11 @@ 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
+      go get -u github.com/jstemmer/go-junit-report
     workingDirectory: '$(system.defaultWorkingDirectory)'
     displayName: 'Fetch sources'
   - script: |
-      go test -p 1 -timeout 30m -v v2ray.com/core/...
+      go test -p 1 -timeout 30m -v v2ray.com/core/... 2>&1 | go-junit-report > report.xml
     workingDirectory: '$(system.defaultWorkingDirectory)'
     displayName: 'Test'
   - task: PublishTestResults@2