open-nomad/vendor/github.com/fsouza/go-dockerclient/Makefile
Yoan Blanc 8e744d1877
vendor: fsouza/go-docker-client v1.6.3
Signed-off-by: Yoan Blanc <yoan@dosimple.ch>
2020-03-22 09:25:46 +01:00

23 lines
335 B
Makefile

.PHONY: \
all \
lint \
pretest \
test \
integration
all: test
lint:
cd /tmp && GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@latest
golangci-lint run
pretest: lint
gotest:
go test -race -vet all ./...
test: pretest gotest
integration:
go test -tags docker_integration -run TestIntegration -v