Skip to content
Merged
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
1 change: 1 addition & 0 deletions tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def eagle3_model_name():
return "vllm-ascend/EAGLE3-LLaMA3.1-Instruct-8B"


@pytest.mark.skip("TODO: Revert me after ngram oom issue on ci is fixed")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While skipping the test is a reasonable temporary measure to unblock CI, using a TODO comment alone can make it difficult to track and resolve the underlying OOM issue. To improve visibility and ensure this test is eventually re-enabled, it's highly recommended to create a tracking issue (e.g., a GitHub issue) and reference its number in the skip message. This makes it much easier for the team to follow up on fixing the OOM problem.

Suggested change
@pytest.mark.skip("TODO: Revert me after ngram oom issue on ci is fixed")
@pytest.mark.skip("Skipping to unblock CI due to OOM. See issue #<issue_number> for tracking.")

def test_ngram_correctness(
test_prompts: list[list[dict[str, Any]]],
sampling_config: SamplingParams,
Expand Down
Loading