Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.

Commit

Permalink
Disable race detector during tests due to memory usage
Browse files Browse the repository at this point in the history
The tests are using way too much memory with the race detector enabled causing
the build machines to fall over. Cursory profiling shows no leaks but it may
need a closer look. For now, it will be disabled but this cannot be permanent.
  • Loading branch information
stevvooe committed Dec 6, 2014
1 parent 14e7adb commit e15e07c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions circle.yml
Expand Up @@ -21,8 +21,11 @@ test:
- test -z $(gofmt -s -l . | tee /dev/stderr)
- go vet ./...
- test -z $(golint ./... | tee /dev/stderr)
- go test -race -test.v ./...:
timeout: 600
- go test -test.v ./...

# Disabling the race detector due to massive memory usage.
# - go test -race -test.v ./...:
# timeout: 600

# TODO(stevvooe): The following is an attempt at using goveralls but it
# just doesn't work. goveralls requires a single profile file to be
Expand Down

0 comments on commit e15e07c

Please sign in to comment.