forked from Netflix/chaosmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
32 lines (21 loc) · 804 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.PHONY: check fmt lint errcheck test build
SHELL:=/bin/bash
build: check
go build github.com/FakeTwitter/elon/cmd/elon
check: fmt lint errcheck
gofmt: fmt
fmt:
diff -u <(echo -n) <(gofmt -d `find . -name '*.go' | grep -Ev '/vendor/|/migration'`)
lint:
go list ./... | grep -Ev '/vendor/|/migration' | xargs -L1 golint
errcheck:
errcheck -ignore 'io:Close' -ignoretests `go list ./... | grep -v /vendor/`
test:
go test -v ./...
# Coverage testing
cover:
echo 'mode: atomic' > coverage.out
go list ./... | grep -Ev '/vendor/|/migration' | xargs -n1 -I{} sh -c 'go test -covermode=atomic -coverprofile=coverage.tmp {} && tail -n +2 coverage.tmp >> coverage.out' && rm coverage.tmp
go tool cover -html=coverage.out
fix:
gofmt -w -s `find . -name '*.go' | grep -Ev '/vendor/|/migration'`