Skip to content

Commit 533533b

Browse files
fix list naming error
Signed-off-by: Yiheng Wang <[email protected]>
1 parent c101f91 commit 533533b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/run_premerge_cpu.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fi
3333
# Usually, CPU test is required, but for some bundles that are too large to run in Github Actions, we can exclude them.
3434
exclude_test_list=("maisi_ct_generative")
3535
is_excluded() {
36-
for item in "${exclude_list[@]}"; do
36+
for item in "${exclude_test_list[@]}"; do # Use exclude_test_list here
3737
if [ "$1" == "$item" ]; then
3838
return 0 # Return true (0) if excluded
3939
fi

ci/run_regular_tests_cpu.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fi
3333
# Usually, CPU test is required, but for some bundles that are too large to run in Github Actions, we can exclude them.
3434
exclude_test_list=("maisi_ct_generative")
3535
is_excluded() {
36-
for item in "${exclude_list[@]}"; do
36+
for item in "${exclude_test_list[@]}"; do # Use exclude_test_list here
3737
if [ "$1" == "$item" ]; then
3838
return 0 # Return true (0) if excluded
3939
fi

0 commit comments

Comments
 (0)