You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ make fix
26
26
27
27
`make test-all`, `make lint-all`, and `make fix-all` are aliases for `make test`, `make lint`, and `make fix`. Use a local clone with `go.work` so adapters resolve the **local**`contexty` tree (no unpublished version tags required for day-to-day work).
28
28
29
-
`make bench` runs benchmarks across the workspace. `make cover` writes a single `coverage.out` at the repo root and prints `go tool cover -func`. `make fuzz` runs `go test -fuzz`per package in each module that contains `func Fuzz*` (modules without fuzz targets are skipped; Go does not support`-fuzz`with `./...`across multiple packages).
29
+
`make bench` runs benchmarks across the workspace. `make cover` writes a single `coverage.out` at the repo root and prints `go tool cover -func`. Fuzz targets live in `*_test.go` files with `//go:build fuzz` so they are not compiled by plain `go test ./...`. `make fuzz` runs `go test -tags=fuzz -fuzz`**per package** in each module that has fuzz tests (Go does not allow`-fuzz` across multiple packages in one invocation).
0 commit comments