diff --git a/.github/workflows/check_pull_request.yml b/.github/workflows/check_pull_request.yml index 7ba13e9..88c93ad 100644 --- a/.github/workflows/check_pull_request.yml +++ b/.github/workflows/check_pull_request.yml @@ -51,7 +51,7 @@ jobs: echo -e "\033[1;33mIntegration tests were skipped by label 'test/no-integration'\033[0m" echo -e '\033[1;33m!!!\033[0m' - make SKIP_INTEGRATION_TESTS=true test + make test/no-integration else make test fi diff --git a/Makefile b/Makefile index 0c4ed51..15a602e 100644 --- a/Makefile +++ b/Makefile @@ -101,6 +101,9 @@ test: go-installed docker-installed bin/kind ./hack/run_tests.sh $(MAKE) clean/test +test/no-integration: + $(MAKE) SKIP_INTEGRATION_TESTS=true test + lint: bin/golangci-lint ./bin/golangci-lint run ./... -c .golangci.yaml