blob: 01de94bc283c933c32b2f38ca7ae6c6d40f79da1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
PACKAGES=$$(go list ./... | grep -v '/vendor/')
.PHONEY: test
test:
go test -cover $(PACKAGES)
.PHONEY: bench
bench:
go test -cover -bench . -benchmem -run 'Benchmark.*' $(PACKAGES)
.PHONEY: vet
vet:
go vet $(PACKAGES)
deps.svg: *.go
( echo "digraph G {"; \
go list -f '{{range .Imports}}{{printf "\t%q -> %q;\n" $$.ImportPath .}}{{end}}' \
$$(go list -f '{{join .Deps " "}}' .) .; \
echo "}"; \
) | dot -Tsvg -o $@
|