이벤트 가져오기 위젯 테스트 추가 및 테스트 훅 도입

This commit is contained in:
2025-09-12 06:33:44 +09:00
parent 107abc963f
commit a5f2544d11
121 changed files with 39277 additions and 3911 deletions
+5 -2
View File
@@ -90,7 +90,10 @@ parse_params() {
ISOLATION_MODE="${1#*=}"
;;
-s|--sequential)
PARALLEL="--no-concurrency"
PARALLEL="-j 1"
;;
-c=*|--repeat=*)
REPEAT_COUNT="${1#*=}"
;;
-h|--help)
usage
@@ -159,7 +162,7 @@ load_environment_settings() {
if [ -z "$PARALLEL" ]; then
local PARALLEL_SETTING=$(grep "$ENVIRONMENT:" -A 10 "$CONFIG_FILE" | grep "parallel:" | head -n 1 | awk '{print $2}')
if [ "$PARALLEL_SETTING" = "false" ]; then
PARALLEL="--no-concurrency"
PARALLEL="-j 1"
fi
fi