disable parallel test execution

pull/432/merge
Darien Raymond 2017-04-16 21:04:15 +02:00
parent c55f737dd0
commit e274474f25
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 2 additions and 2 deletions

View File

@ -9,6 +9,6 @@ before_script:
- sudo ntpdate -u time.google.com - sudo ntpdate -u time.google.com
- date - date
script: script:
- go test -tags json -v v2ray.com/core/... - go test -p 1 -tags json -v v2ray.com/core/...
after_success: after_success:
- ./testing/coverage/coverall - ./testing/coverage/coverall

2
.vscode/tasks.json vendored
View File

@ -21,7 +21,7 @@
}, },
{ {
"taskName": "test", "taskName": "test",
"args": ["v2ray.com/core/..."], "args": ["-p", "1", "v2ray.com/core/..."],
"isBuildCommand": false "isBuildCommand": false
} }
] ]