Reduce timeout for "make test-fast" to 5m #58

This commit is contained in:
Michael Mayer 2018-11-15 01:42:04 +01:00
parent 08caccd43b
commit b9fedb80f0

View file

@ -29,7 +29,7 @@ migrate:
test:
go test -tags=slow -timeout 20m -v ./internal/...
test-fast:
go test -timeout 20m -v ./internal/...
go test -timeout 5m -v ./internal/...
test-race:
go test -tags=slow -race -timeout 60m -v ./internal/...
test-codecov: