From 7745fb6fccd75c6073d748688d0d0074e7d2ad0f Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 16 May 2023 16:55:35 +0200 Subject: [PATCH] make: run tests in parallel Speed up the test run by running them in parallel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 27c1eb3..2373c7a 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ alpine: lib/tiny-cloud/user-data/alpine-config check: tests/Kyuafile Kyuafile - kyua test || (kyua report --verbose && exit 1) + kyua --variable parallelism=$(shell nproc) test || (kyua report --verbose && exit 1) tests/Kyuafile: $(wildcard tests/*.test) echo "syntax(2)" > $@.tmp