From 550c6fa91642fd4fabfee623e34670242ebf0a81 Mon Sep 17 00:00:00 2001 From: Ema Ciupe Date: Thu, 30 Jun 2022 13:24:35 +0300 Subject: [PATCH] [ch28948] Core: run test in parallel in circle CI --- runtests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtests.sh b/runtests.sh index ff4d78b3a..4adb866ac 100755 --- a/runtests.sh +++ b/runtests.sh @@ -20,6 +20,7 @@ fi # Run unittests and coverage report coverage erase -time coverage run manage.py test --noinput --keepdb "$@" +time coverage run --parallel-mode --concurrency=multiprocessing manage.py test --noinput --keepdb --parallel=6 "$@" +coverage combine coverage report -m coverage html