We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f2b077 + 0951524 commit 61734ccCopy full SHA for 61734cc
.travis.yml
@@ -3,9 +3,6 @@ go_import_path: github.com/ethereum/go-ethereum
3
sudo: false
4
matrix:
5
include:
6
- - os: linux
7
- dist: trusty
8
- go: 1.4.2
9
- os: linux
10
dist: trusty
11
go: 1.5.4
build/ci.go
@@ -227,6 +227,9 @@ func doTest(cmdline []string) {
227
228
// Run the actual tests.
229
gotest := goTool("test")
230
+ // Test a single package at a time. CI builders are slow
231
+ // and some tests run into timeouts under load.
232
+ gotest.Args = append(gotest.Args, "-p", "1")
233
if *coverage {
234
gotest.Args = append(gotest.Args, "-covermode=atomic", "-cover")
235
}
0 commit comments