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