influxdb/circle.yml

12 lines
275 B
YAML
Raw Normal View History

2015-02-25 20:09:37 +00:00
dependencies:
pre:
- go get -u golang.org/x/tools/cmd/vet;
test:
override:
# Put each test command on its own line.
- go tool vet .
- go test -timeout 300s -v ./...
- GORACE="halt_on_error=1" go test -race -timeout 600s -v ./...