Skip to content

Commit ee19ca5

Browse files
authored
[None][infra] Waive test main 0808 (#6751)
Signed-off-by: qqiao <[email protected]>
1 parent de47282 commit ee19ca5

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

tests/integration/test_lists/waives.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,10 +280,18 @@ accuracy/test_disaggregated_serving.py::TestLlama3_1_8BInstruct::test_ctx_pp_gen
280280
examples/test_gemma.py::test_hf_gemma_fp8_base_bf16_multi_lora[gemma-2-9b-it] SKIP (https://nvbugs/5434451)
281281
examples/test_gemma.py::test_hf_gemma_fp8_base_bf16_multi_lora[gemma-2-27b-it] SKIP (https://nvbugs/5434451)
282282
examples/test_gemma.py::test_hf_gemma_fp8_base_bf16_multi_lora[gemma-3-1b-it] SKIP (https://nvbugs/5434451)
283-
accuracy/test_llm_api_pytorch.py::TestQwen3_235B_A22B::test_nvfp4[latency_moe_trtllm_eagle3] SKIP (https://nvbugs/5437384)
283+
accuracy/test_llm_api_pytorch.py::TestQwen3_235B_A22B::test_nvfp4[latency_moe_trtllm_eagle3] SKIP (https://nvbugs/5437405)
284284
accuracy/test_llm_api_pytorch.py::TestLlama3_3_70BInstruct::test_fp8_tp4 SKIP (https://nvbugs/5440241)
285285
test_e2e.py::test_ptp_quickstart_multimodal[NVILA-8B-FP16-vila/NVILA-8B-image-False] SKIP (https://nvbugs/5444060)
286286
test_e2e.py::test_ptp_quickstart_multimodal[llava-v1.6-mistral-7b-llava-v1.6-mistral-7b-hf-image-False] SKIP (https://nvbugs/5444060)
287287
accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_auto_dtype[mtp_nextn=0-overlap_scheduler=True] SKIP (https://nvbugs/5433545)
288288
test_e2e.py::test_ptp_quickstart_multimodal[llava-v1.6-mistral-7b-llava-v1.6-mistral-7b-hf-image-False] SKIP (https://nvbugs/5444095)
289289
test_e2e.py::test_ptp_quickstart_multimodal[NVILA-8B-FP16-vila/NVILA-8B-image-False] SKIP (https://nvbugs/5444095)
290+
examples/test_nemotron_nas.py::test_nemotron_nas_summary_1gpu[DeciLM-7B] SKIP (https://nvbugs/5444636)
291+
accuracy/test_cli_flow.py::TestLongAlpaca7B::test_multiblock_aggressive SKIP (https://nvbugs/5444627)
292+
accuracy/test_llm_api_pytorch.py::TestDeepSeekV3Lite::test_bfloat16_4gpus_online_eplb[mtp_nextn=2] SKIP (https://nvbugs/5444687)
293+
accuracy/test_llm_api_pytorch.py::TestDeepSeekV3Lite::test_nvfp4_4gpus_online_eplb[fp8kv=True] SKIP (https://nvbugs/5444687)
294+
accuracy/test_llm_api_pytorch.py::TestDeepSeekR1::test_nvfp4_multi_gpus[latency] SKIP (https://nvbugs/5445466)
295+
accuracy/test_llm_api_pytorch.py::TestDeepSeekR1::test_nvfp4_multi_gpus[latency_trtllmgen] SKIP (https://nvbugs/5445466)
296+
disaggregated/test_disaggregated.py::test_disaggregated_ctxpp4_genpp4[llama-3.1-8b] SKIP (https://nvbugs/5445642)
297+
examples/test_qwen2audio.py::test_llm_qwen2audio_single_gpu[qwen2_audio_7b_instruct] SKIP (https://nvbugs/5447530)

tests/unittest/llmapi/test_llm_kv_cache_events.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ def check_events(llm,
231231
assert not llm.get_kv_cache_events(5)
232232

233233

234+
@pytest.mark.skip(reason="https://nvbugs/5445001")
234235
def test_llm_kv_events_api():
235236
llm = create_llm()
236237
sampling_params = SamplingParams(max_tokens=6,

tests/unittest/trt/model/test_nemotron_nas.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ def get_loader_test_cases():
382382

383383
@parameterized.expand(get_loader_test_cases, name_func=unittest_name_func)
384384
def test_allclose_to_hf(self, hf_model_dir: str, params: TestParams):
385+
self.skipTest(f"https://nvbugs/5444611")
385386
hf_model = transformers.AutoModelForCausalLM.from_pretrained(
386387
hf_model_dir,
387388
trust_remote_code=True,
@@ -827,6 +828,7 @@ def test_convert_config_from_hf(self, ckpt_path: Optional[str],
827828
def test_convert_model_from_hf(self, model_dir: Optional[str],
828829
preloaded: bool, tp_size: int, pp_size: int,
829830
dtype: str) -> None:
831+
self.skipTest(f"https://nvbugs/5444611")
830832
ckpt_path = Path(llm_models_root(check=True), "nvsmall/tests",
831833
model_dir)
832834

0 commit comments

Comments
 (0)