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
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ def test_eviction_with_block_reuse(self):
)

# Chunked prefill + eviction + block reuse — V2 matches V1
@pytest.mark.private_mpi_session
def test_chunked_prefill_eviction_block_reuse(self):
_run_eviction_test(
self.MODEL_PATH,
Expand Down
1 change: 0 additions & 1 deletion tests/integration/test_lists/waives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,6 @@ full:RTX_PRO_6000_Blackwell_Server_Edition/accuracy/test_llm_api_pytorch.py::Tes
full:RTX_PRO_6000_Blackwell_Server_Edition/accuracy/test_llm_api_pytorch.py::TestQwen3_5_4B::test_fp8 SKIP (https://nvbugs/6273850)
full:sm100/unittest/bindings SKIP (Disable for Blackwell)
kv_cache/test_kv_cache_v2_scheduler.py::TestKVCacheV2Llama::test_chunked_prefill SKIP (https://nvbugs/6428002)
kv_cache/test_kv_cache_v2_scheduler.py::TestKVCacheV2Llama::test_chunked_prefill_eviction_block_reuse SKIP (https://nvbugs/6607481)
kv_cache/test_kv_cache_v2_scheduler.py::TestKVCacheV2Llama::test_eviction[cuda_graph] SKIP (https://nvbugs/6600098)
kv_cache/test_kv_cache_v2_scheduler.py::TestKVCacheV2Llama::test_eviction_with_block_reuse SKIP (https://nvbugs/6462303)
kv_cache/test_kv_cache_v2_scheduler.py::TestKVCacheV2Llama::test_overlap_scheduler[non_overlap] SKIP (https://nvbugs/6600098)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_common/session_reuse_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

def _is_private_nodeid(nodeid: str) -> bool:
lowered = nodeid.lower()
return any(pat in lowered for pat in _PRIVATE_NODEID_PATTERNS)
return any(pat.lower() in lowered for pat in _PRIVATE_NODEID_PATTERNS)


def pytest_configure(config):
Expand Down
Loading