From 151dd674db03bac5be3b04d56171e25e4e2bcc3b 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..b3c7c1ecf 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 --concurrency=multiprocessing manage.py test --noinput --keepdb --parallel "$@" +coverage combine coverage report -m coverage html