From a4a04ac3563c26be3f792fa1133f8a7c404c1b82 Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Wed, 25 Sep 2024 08:10:40 +0200 Subject: [PATCH] ci/circle: fix tests parallelism (#12551) Use `BUSTED_OVERRIDES`, as `BUSTED_SPEC_FILE` was removed in 93c7ceccd9f3bab110dc230cfb07ba5ae16ced3c. --- .ci/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/test.sh b/.ci/test.sh index 8a51d6095..43c44de90 100755 --- a/.ci/test.sh +++ b/.ci/test.sh @@ -6,9 +6,9 @@ source "${CI_DIR}/common.sh" pushd install/koreader && { # the circleci command spits out newlines; we want spaces instead - BUSTED_SPEC_FILE="$(circleci tests glob "spec/front/unit/*_spec.lua" | circleci tests split --split-by=timings --timings-type=filename | tr '\n' ' ')" + BUSTED_OVERRIDES="$(circleci tests glob "spec/front/unit/*_spec.lua" | circleci tests split --split-by=timings --timings-type=filename | tr '\n' ' ')" } && popd || exit -make testfront --assume-old=all BUSTED_SPEC_FILE="${BUSTED_SPEC_FILE}" +make testfront --assume-old=all BUSTED_OVERRIDES="${BUSTED_OVERRIDES}" # vim: sw=4