Add makefile task for running part of integration tests

make test.integration.compose
make test.integration.system
This commit is contained in:
Denis Arh
2019-09-13 11:27:15 +02:00
parent c8e04f1919
commit e2ad2e20f3
+4
View File
@@ -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)