From c1c9d5bacee33ef757281b080c93e355744f5e54 Mon Sep 17 00:00:00 2001 From: louisabraham Date: Wed, 5 Jun 2024 09:53:54 +0200 Subject: [PATCH] add parallel option --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d7e112e..6348ed4 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ assert-CLI_CALL: @[[ -n "${CLI_CALL}" ]] || { >&2 echo "ERROR: CLI_CALL is not specified"; exit 1; } check-cli: assert-CLI_CALL assert-bats - cd tests-cli && $(BATS) *.bats + cd tests-api && $(BATS) --jobs $(JOBS) *.bats check-cli/seguid-javascript: update-submodules $(MAKE) check-cli CLI_CALL="npx seguid"