-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix makefile to run test/coverage/lint on all modules in the reposito…
…ry (#191) By default, the `go test ./...` includes all packages and sub-packages within the current _module_. However, in PR #187 we have introduced another module (`tools`) inside this repository, which is silently ignored by test / coverage / lint tasks in our makefile. This PR fixes this by iterating over a predefined list of modules for all these tasks, making it expandable for future module additions. Due to this fix, we have run `gofmt -s` on `tools/cmd/golden-test/main_test.go` to pass linting.
- Loading branch information
Showing
2 changed files
with
29 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters