From 251ece22e114347f361725fc94837919c2a62cfd Mon Sep 17 00:00:00 2001 From: Shi Dong Date: Mon, 1 Jun 2026 05:35:24 -0700 Subject: [PATCH] Re-enable test_qwen3_4B_ckpt.py This checkpoint save/load hash-equality test was disabled with disabled="Disabled due to bugs." It passes today: verified twice on an 8xH200 devbox (image radixark/miles:dev) via the exact CI invocation `python3 tests/e2e/ckpt/test_qwen3_4B_ckpt.py`, both runs deterministic (Model hashes match x4, peak GPU 12.37 GB, zero assertion failures). Removes the FIXME and the disabled marker; no assert logic is touched. --- tests/e2e/ckpt/test_qwen3_4B_ckpt.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/e2e/ckpt/test_qwen3_4B_ckpt.py b/tests/e2e/ckpt/test_qwen3_4B_ckpt.py index 9584b68f534..dc3c4b0d0b3 100644 --- a/tests/e2e/ckpt/test_qwen3_4B_ckpt.py +++ b/tests/e2e/ckpt/test_qwen3_4B_ckpt.py @@ -4,8 +4,7 @@ import miles.utils.external_utils.command_utils as U -# FIXME: fix this -register_cuda_ci(est_time=1200, suite="stage-c-8-gpu-h100", labels=["ckpt"], disabled="Disabled due to bugs.") +register_cuda_ci(est_time=1200, suite="stage-c-8-gpu-h100", labels=["ckpt"]) ENABLE_EVAL = bool(int(os.environ.get("MILES_TEST_ENABLE_EVAL", "1")))