From 1de6c3ff6e6891b6490e3e849f5ea7017dd12c60 Mon Sep 17 00:00:00 2001 From: Solly Ross Date: Wed, 7 Apr 2021 14:44:47 -0700 Subject: [PATCH] Use `make tests` in CI The CI previously duplicated the contents of `make test` in a separate script. This just makes that script call `make test` instead. --- test.sh | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/test.sh b/test.sh index 3f17ef45342..033c9f7d00e 100755 --- a/test.sh +++ b/test.sh @@ -14,11 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -source test/common.sh - -header_text "Running kubebuilder unit tests" -go test -race -v ./pkg/... - -./test/integration.sh - -./test/testdata/test.sh +# prow calls this file currently, but we can just use `make test` to test +# the set of things we want. +make test