From 66fe580e99c64bb3a92b5533f9dc6a1851476ba9 Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Thu, 30 Jul 2020 14:00:06 -0500 Subject: [PATCH] We need an extra "go test" command for the new pkg/client module. Signed-off-by: Matt Moyer --- hack/test-unit.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/test-unit.sh b/hack/test-unit.sh index 734d01eb..111abf41 100755 --- a/hack/test-unit.sh +++ b/hack/test-unit.sh @@ -2,3 +2,4 @@ set -e go test -race ./... +( cd pkg/client && go test -race ./... )