[Metax][CI] update ci test files (#6340)

This commit is contained in:
MingkunZhang
2026-02-04 13:58:07 +08:00
committed by GitHub
parent 9b0a82cfa9
commit 2ffcb3d9ed
3 changed files with 10 additions and 2 deletions
+8 -2
View File
@@ -95,14 +95,20 @@ METAX_CI_CASELIST=(
"tests/operators/test_token_penalty.py"
"tests/operators/test_stop_generation_multi_ends.py"
"tests/operators/test_get_padding_offset.py"
"tests/operators/test_speculate_get_padding_offset.py"
"tests/operators/test_rebuild_padding.py"
"tests/operators/test_share_external_data.py"
"tests/operators/test_rejection_top_p_sampling.py"
"tests/layers/test_min_sampling.py"
)
for path in "${METAX_CI_CASELIST[@]}"; do
FILTERED_PATHS+=("$run_path/$path")
local TEST_FILE_PATH=$run_path/$path
if [ -e "$TEST_FILE_PATH" ]; then
FILTERED_PATHS+=("$TEST_FILE_PATH")
else
echo "Test file: [ $path ] does not exist, skip it."
fi
# if ! is_excluded "$path"; then
# FILTERED_PATHS+=("$run_path/$path")
# fi