Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_AutoModel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,6 @@ run_test uv run --no-sync bash ./tests/functional/sft_automodel_lora.sh
run_test uv run --no-sync bash ./tests/functional/test_automodel_extra_installed_correctly.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_Eval.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ run_test uv run --no-sync bash ./tests/functional/eval_async.sh
run_test fast uv run --no-sync bash ./tests/functional/eval_audio.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_GRPO_1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,6 @@ run_test fast uv run --no-sync bash ./tests/functional/grpo_dp_simple.sh
run_test fast uv run --no-sync bash ./tests/functional/grpo_dp_mooncake.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_GRPO_2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ run_test uv run --no-sync bash ./tests/functional/grpo_multiturn.sh
run_test uv run --no-sync bash ./tests/functional/grpo_non_colocated.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_GRPO_3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ run_test fast uv run --no-sync bash ./tests/functional/grpo_topp_topk.sh
run_test uv run --no-sync bash ./tests/functional/vlm_grpo.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_Gym.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,6 @@ run_test() {
run_test fast uv run --no-sync bash ./tests/functional/grpo_async_gym.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_Megatron_1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,6 @@ run_test fast uv run --no-sync bash ./tests/functional/grpo_megatron_eagle3_onli
run_test uv run --no-sync bash ./tests/functional/grpo_megatron_generation.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_Megatron_2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ run_test fast uv run --no-sync bash ./tests/functional/dpo_megatron_lora.sh
run_test uv run --no-sync bash ./tests/functional/sft_megatron_lora.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_Megatron_3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ run_test uv run --no-sync bash ./tests/functional/dpo_megatron.sh
run_test uv run --no-sync bash ./tests/functional/sft_megatron.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_Other_1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,6 @@ if [[ "${FAST:-0}" != "1" ]]; then
fi

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_Other_2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ run_test uv run --no-sync bash ./tests/functional/prorlv2.sh
run_test uv run --no-sync bash ./tests/functional/rm.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_SFT.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ run_test uv run --no-sync bash ./tests/functional/sft_avlm.sh
run_test uv run --no-sync bash ./tests/functional/sft_resume_diamond.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
4 changes: 3 additions & 1 deletion tests/functional/L1_Functional_Tests_SGLang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,6 @@ run_test() {
run_test uv run --no-sync bash ./tests/functional/grpo_sglang.sh

cd ${PROJECT_ROOT}/tests
coverage combine .coverage*
if compgen -G ".coverage*" > /dev/null; then
coverage combine .coverage*
fi
Loading