Skip to content

Revert "[CI] fix skiped e2e test when upgrade vllm version (#6654)"#7166

Merged
MengqingCao merged 1 commit intovllm-project:mainfrom
Meihan-chen:revert
Mar 11, 2026
Merged

Revert "[CI] fix skiped e2e test when upgrade vllm version (#6654)"#7166
MengqingCao merged 1 commit intovllm-project:mainfrom
Meihan-chen:revert

Conversation

@Meihan-chen
Copy link
Copy Markdown
Contributor

@Meihan-chen Meihan-chen commented Mar 11, 2026

This reverts commit f6db47f.

What this PR does / why we need it?

Does this PR introduce any user-facing change?

How was this patch tested?

@github-actions
Copy link
Copy Markdown
Contributor

👋 Hi! Thank you for contributing to the vLLM Ascend project. The following points will speed up your PR merge:‌‌

  • A PR should do only one thing, smaller PRs enable faster reviews.
  • Every PR should include unit tests and end-to-end tests ‌to ensure it works and is not broken by other future PRs.
  • Write the commit message by fulfilling the PR description to help reviewer and future developers understand.

If CI fails, you can run linting and testing checks locally according Contributing and Testing.

…ect#6654)"

This reverts commit f6db47f.

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
@MengqingCao MengqingCao added ready-for-test start test by label for PR ready read for review labels Mar 11, 2026
@MengqingCao MengqingCao self-assigned this Mar 11, 2026
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request reverts a previous change that attempted to address a skipped end-to-end test. Consequently, the test_aclgraph_capture_replay test, which was previously unskipped, is now marked to be skipped again with a "fix me" reason. This action temporarily disables the test in the CI pipeline, likely due to ongoing issues that need further resolution.

Highlights

  • Revert Previous Fix: This pull request reverts a prior commit (f6db47f) that aimed to fix a skipped end-to-end test.
  • Test Skipping Re-introduced: The @pytest.mark.skip(reason="fix me") decorator has been re-added to the test_aclgraph_capture_replay function, causing the test to be skipped again in the CI pipeline.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • tests/e2e/multicard/2-cards/test_aclgraph_capture_replay.py
    • Re-added the @pytest.mark.skip decorator to the test_aclgraph_capture_replay function.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This PR reverts a previous commit, re-skipping the e2e test test_models_aclgraph_capture_replay_metrics_dp2 to fix CI failures. While this is a valid temporary measure, the skip reason 'fix me' is too vague. I've added a comment suggesting a more descriptive reason to improve tracking and maintainability.

Additionally, the pull request description is empty, which doesn't follow the repository's style guide. Here is a suggested title and summary:

Suggested PR Title:

[Test] Revert "[CI] fix skipped e2e test when upgrade vllm version (#6654)"

Suggested PR Summary:

### What this PR does / why we need it?
This PR reverts commit f6db47f1038cf14d6c6f7eb4780be3c839c7656b, which un-skipped the e2e test `test_models_aclgraph_capture_replay_metrics_dp2`. The test is likely failing after a recent vLLM version upgrade, and this revert re-disables it to unblock the CI pipeline.

### Does this PR introduce _any_ user-facing change?
No. This change only affects CI/testing.

### How was this patch tested?
CI is expected to pass with this change, confirming the skipped test was the source of failure.

torch.npu.reset_peak_memory_stats()


@pytest.mark.skip(reason="fix me")
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

high

While skipping a test can be a necessary temporary measure, the reason 'fix me' is too generic and makes it difficult to track the problem. Please provide a more descriptive reason, mentioning that this is a revert and why the test is failing. It is also best practice to create and link a tracking issue to ensure the test is re-enabled later.

Suggested change
@pytest.mark.skip(reason="fix me")
@pytest.mark.skip(reason="Reverting commit f6db47f. Test is failing after vLLM upgrade and needs investigation.")

@MengqingCao MengqingCao merged commit da01a74 into vllm-project:main Mar 11, 2026
79 checks passed
845473182 pushed a commit to 845473182/vllm-ascend that referenced this pull request Mar 12, 2026
…to qwen3next_graph

* 'main' of https://github.com/vllm-project/vllm-ascend: (88 commits)
  [main][bugfix] Fixed the problem of speculative decoding in FULL mode (vllm-project#7148)
  fixed fia pad logic in graph mode. (vllm-project#7144)
  [Doc] fix DSV3.1 PD configs (vllm-project#7187)
  refactor: add a check before layer_sharding logging (vllm-project#7186)
  [Build] Add support for Ascend950 chip (vllm-project#7151)
  Revert "[CI] fix skiped e2e test when upgrade vllm version  (vllm-project#6654)" (vllm-project#7166)
  [MODELRUNNERV2]fix penality ops (vllm-project#7013)
  [Bugfix][LoRA] Fix the issue when enable LoRA + tp + fully_sharded_loras (vllm-project#6650)
  [KV Pool]get_num_new_matched_tokens return 0 if token length < block_size (vllm-project#7146)
  [CI] Build Image for v0.16.0rc1 (vllm-project#7155)
  [CI] Skip `test_mooncake_layerwise_connector.py` in `ut` (vllm-project#7147)
  [BugFix]Fix recomputed scheduler bug (vllm-project#7137)
  [Model] Support Minimax-m2.5 on NPU (vllm-project#7105)
  [P/D]Mooncake Layerwise Connector supports hybrid attention manager with multiple kvcache groups (vllm-project#7022)
  Add patch_qwen3_5 for triton ops fused_recurrent_gated_delta_rule (vllm-project#7109)
  [Doc][ReleaseNote] Add release notes for v0.16.0rc1 (vllm-project#7067)
  [Misc] Download on both hk and guiyang region (vllm-project#7129)
  [bugdix] The problem that the w4a8 weight fails to be loaded when the EP is not enabled is resolved. (vllm-project#7090)
  [eagle][cp] fix eagle_cp enable bug2 (vllm-project#7079)
  [CI]Upgrade niglty multi-node-tests max-parallel to 2 (vllm-project#7035)
  ...
Nagisa125 pushed a commit to starmountain1997/vllm-ascend that referenced this pull request Mar 17, 2026
…ect#6654)" (vllm-project#7166)

This reverts commit f6db47f.

- vLLM version: v0.16.0
- vLLM main:
vllm-project/vllm@4034c3d

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

module:tests ready read for review ready-for-test start test by label for PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants