diff --git a/Makefile b/Makefile index 42b5226..b96df7c 100644 --- a/Makefile +++ b/Makefile @@ -70,9 +70,9 @@ test-local-unit: deps ## Run local unit tests @echo "Running local unit tests..." @$(GO) test -v -race -cover $(shell $(GO) list ./... | grep -v /tests/integration) -test-all: test-teardown test-setup test-connection schema-install broker-start test-local-unit test-integration-go broker-stop test-teardown ## Run all unit and integration tests (starts its own Postgres via docker-compose) +test-all: test-teardown test-setup test-connection schema-install test-local-unit test-integration-go test-teardown ## Run all unit and integration tests (starts its own Postgres via docker-compose) -test-ci: test-connection schema-install broker-start test-local-unit test-integration-go broker-stop ## Run all unit and integration tests against an externally-provided Postgres (CI services: block) +test-ci: test-connection schema-install test-local-unit test-integration-go ## Run all unit and integration tests against an externally-provided Postgres (CI services: block) test-connection: deps ## Test database connection with retry @echo "Testing database connection (host=$(TEST_DB_HOST) port=$(TEST_DB_PORT))..."