From a36bb95b0b2e2e5a73adaa3076177375ed33ce43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=C5=BE=20Jerman?= Date: Thu, 4 Feb 2021 17:29:46 +0100 Subject: [PATCH] Add store testing Makefile definitions --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 8f104897d..563c46f76 100644 --- a/Makefile +++ b/Makefile @@ -165,6 +165,14 @@ test.integration: $(GOTEST) test.integration.%: $(GOTEST) $(GOTEST) $(TEST_FLAGS) ./tests/$*/... +# Runs store tests +test.store: $(GOTEST) + $(GOTEST) $(TEST_FLAGS) $(TEST_SUITE_store) + +# Runs one suite from store tests +test.store.%: $(GOTEST) + $(GOTEST) $(TEST_FLAGS) ./store/tests/$*/... + # Runs ALL tests test.all: $(GOTEST) $(GOTEST) $(TEST_FLAGS) $(TEST_SUITE_all)