diff --git a/.gitignore b/.gitignore index 757fee3..b10d64f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/.idea \ No newline at end of file +/.idea +/coverage.out diff --git a/Makefile b/Makefile index 15fe57c..1568e91 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ lint: revive -config revive.toml -formatter friendly ./... test: - go test ./... + go test -count=1 -covermode=count -coverprofile=coverage.out ./... test-race: go test -count=1 -race ./...