Skip to content

Commit

Permalink
Merge pull request ethereum#3041 from fjl/build-less-parallel
Browse files Browse the repository at this point in the history
build: limit test concurrency
  • Loading branch information
karalabe authored Sep 26, 2016
2 parents 7f2b077 + 0951524 commit 61734cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ go_import_path: github.com/ethereum/go-ethereum
sudo: false
matrix:
include:
- os: linux
dist: trusty
go: 1.4.2
- os: linux
dist: trusty
go: 1.5.4
Expand Down
3 changes: 3 additions & 0 deletions build/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ func doTest(cmdline []string) {

// Run the actual tests.
gotest := goTool("test")
// Test a single package at a time. CI builders are slow
// and some tests run into timeouts under load.
gotest.Args = append(gotest.Args, "-p", "1")
if *coverage {
gotest.Args = append(gotest.Args, "-covermode=atomic", "-cover")
}
Expand Down

0 comments on commit 61734cc

Please sign in to comment.