diff --git a/Makefile b/Makefile index 2b50043aa9..4eb5444875 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,8 @@ help: @echo " $(cyan)test$(reset) - run unit tests" @echo " $(cyan)race-test$(reset) - run unit tests with race detection" @echo " $(cyan)integration$(reset) - run integration tests (requires Docker images)" + @echo " support 'SUITES' variable for executing specific tests" + @echo " e.g. SUITES='suites/join-token suites/k8s' make integration" @echo @echo "$(bold)Build and test:$(reset)" @echo " $(cyan)all$(reset) - build all SPIRE binaries, lint the code, and run unit tests" @@ -355,7 +357,7 @@ else endif integration: - $(E)./test/integration/test.sh + $(E)./test/integration/test.sh $(SUITES) ############################################################################# # Build Artifact