github.com/tamaxcode/worker@v1.0.0/makefile (about)

     1  test:
     2  	go test ./...
     3  
     4  test-cover:
     5  ifeq ($(wildcard coverage/),)
     6  	mkdir coverage
     7  endif
     8  	go test ./... -coverprofile=coverage/coverage.out
     9  	go tool cover -html coverage/coverage.out -o coverage/coverage.html
    10  	go tool cover -func=coverage/coverage.out