The glamourous AI coding agent for your favourite terminal 💘
1.PHONY: test coverage 2 3test: 4 @go test -cover -race -count=1 ./... 5 6coverage: 7 @go test -coverprofile=coverage.txt -race -count=1 ./... 8 go tool cover -html=coverage.txt 9 rm coverage.txt