From 54370ed8326f02b6ca8dfedfd69319b5f06a31d6 Mon Sep 17 00:00:00 2001 From: dikhan Date: Fri, 14 Sep 2018 15:13:08 -0700 Subject: [PATCH] remove not needed if statement --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 570355ca1..6cf36b183 100644 --- a/Makefile +++ b/Makefile @@ -37,10 +37,7 @@ lint: # make test test: fmt vet lint @echo "[INFO] Testing $(TF_OPENAPI_PROVIDER_PLUGIN_NAME)" - @go test -v -cover $(TEST_PACKAGES) ; if [ $$? -ne 1 ]; then \ - echo "[ERROR] Test returned with failures. Please go through the different scenarios and fix the tests that are failing"; \ - exit 1; \ - fi + @go test -v -cover $(TEST_PACKAGES) pre-requirements: @echo "[INFO] Creating $(TF_INSTALLED_PLUGINS_PATH) if it does not exist"