-
Notifications
You must be signed in to change notification settings - Fork 3
Conversation
This pull request has been linked to Clubhouse Story #15962: Checks for required cluster API resources. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Makefile
Outdated
@@ -33,5 +33,5 @@ test: test/go | |||
|
|||
test/go: | |||
@echo "--- go test" | |||
go test -parallel=$(shell nproc) ./... | |||
$(shell scripts/test_go.sh) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can just do ./scripts/test_go.sh
here, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops, yes that's correct!
run_trace false goveralls -service=github -coverprofile="$COVERAGE" | ||
set -e | ||
# Skip coveralls if not running in CI | ||
if [[ -n "${CI}" ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, yeah. We don't use this script to run local tests in the monorepo, which is why we didn't need that check there 🤷♂️
This PR addresses comments from #11