3
0

Add store testing Makefile definitions

This commit is contained in:
Tomaž Jerman 2021-02-04 17:29:46 +01:00
parent 828bc69fc7
commit a36bb95b0b

View File

@ -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)