Skip to content

Commit bbb1fd8

Browse files
Thomas StrombergThomas Stromberg
authored andcommitted
simplify the make test rule
1 parent 805c603 commit bbb1fd8

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ build-registrar:
1616

1717
# Run tests with race detection and coverage
1818
test:
19-
@echo "Running tests with race detection and coverage..."
20-
@go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
21-
@echo ""
22-
@echo "Coverage by package:"
23-
@go test -coverprofile=coverage.out -covermode=atomic ./... 2>&1 | grep -E "coverage:" | awk '{print $$2 "\t" $$5}' | column -t
19+
go test -v -race -cover ./...
2420

2521
# Format code
2622
fmt:

0 commit comments

Comments
 (0)