From 0216c99f6c351e1b775fcb3621cadd465d907f0e Mon Sep 17 00:00:00 2001 From: Shengjie Liu Date: Sun, 4 Feb 2024 10:23:32 +0800 Subject: [PATCH] [CI][FIX] Fix Typo Bug of For Loop Statement in Bash Script --- tests/scripts/task_python_unittest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/task_python_unittest.sh b/tests/scripts/task_python_unittest.sh index de1a1a6d384b..5b07b5256ea5 100755 --- a/tests/scripts/task_python_unittest.sh +++ b/tests/scripts/task_python_unittest.sh @@ -54,7 +54,7 @@ TEST_FILES=( "usmp" ) -for TEST_FILE in ${TEST_FILES}; do +for TEST_FILE in ${TEST_FILES[@]}; do run_pytest ctypes ${TEST_FILE}-0, tests/python/${TEST_FILE} run_pytest cython ${TEST_FILE}-1, tests/python/${TEST_FILE} done