From e2ad2e20f3802e418e73483a8abe7c5186c1fa3a Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Thu, 12 Sep 2019 18:26:07 +0200 Subject: [PATCH] Add makefile task for running part of integration tests make test.integration.compose make test.integration.system --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 0e5d0baaa..139a9892c 100644 --- a/Makefile +++ b/Makefile @@ -116,6 +116,10 @@ test.cover.%: test.integration: $(GOTEST) $(TEST_FLAGS) $(TEST_SUITE_integration) +# Runs one suite from integration tests +test.integration.%: + $(GOTEST) $(TEST_FLAGS) ./tests/$*/... + # Runs ALL tests test.all: $(GOTEST) $(TEST_FLAGS) $(TEST_SUITE_all)