goc/Makefile
lyyyuna c08f0e45eb add version test
add list e2e test

add list e2e

add clear, build e2e

add profile e2e

fix clear e2e case

update

add install e2e

add register e2e case

add init e2e case

add diff e2e case

update

update

update

add cover e2e case

update
2020-07-17 13:01:36 +08:00

21 lines
449 B
Makefile

DEFAULT_EXCEPT_PKGS := e2e
all:
go install ./...
test:
go test -cover -p 1 `go list ./... | grep -v -E ${DEFAULT_EXCEPT_PKGS}`
fmt:
go fmt ./...
govet-check:
go vet ./...
clean:
find tests/ -type f -name '*.bak' -delete
find tests/ -type f -name '*.cov' -delete
find tests/ -type f -name 'simple-project' -delete
find tests/ -type f -name '*_profile_listen_addr' -delete
find tests/ -type f -name 'simple_gopath_project' -delete