Run tests in serial

Prevents race conditions when creating/dropping databases.

See: http://stackoverflow.com/questions/15721238/go-serial-execution-of-package-tests
This commit is contained in:
Adrian Macneil 2015-11-30 18:36:24 -08:00
parent 7253eb6d54
commit edb027f6e9

View file

@ -11,4 +11,4 @@ lint:
$(DOCKER) errcheck ./... $(DOCKER) errcheck ./...
test: test:
$(DOCKER) go test ./... $(DOCKER) go test -p=1 -v ./...