1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-19 22:15:23 +00:00

disable parallel test execution

This commit is contained in:
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
- date
script:
- go test -tags json -v v2ray.com/core/...
- go test -p 1 -tags json -v v2ray.com/core/...
after_success:
- ./testing/coverage/coverall

2
.vscode/tasks.json vendored
View File

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