-
Notifications
You must be signed in to change notification settings - Fork 688
chore: updating and removing tests #2130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThis change removes the entire fault tolerance test suite, its configuration files, supporting utilities, and associated documentation from the codebase. It also deletes the end-to-end serve test and the Changes
Sequence Diagram(s)No sequence diagram generated as the change is a comprehensive removal of test infrastructure and documentation, not a modification of control flow or feature logic. Estimated code review effort🎯 4 (Complex) | ⏱️ ~40 minutes Possibly related PRs
Poem
Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
tests/README.md (1)
14-14: Fix typo in directory comment
accross→across.-├── utils # Common utils accross tests +├── utils # Common utils across tests
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (22)
tests/README.md(1 hunks)tests/fault_tolerance/README.md(0 hunks)tests/fault_tolerance/configs/agg_tp_1_dp_1.yaml(0 hunks)tests/fault_tolerance/configs/agg_tp_1_dp_4.yaml(0 hunks)tests/fault_tolerance/configs/agg_tp_1_dp_8.yaml(0 hunks)tests/fault_tolerance/configs/agg_tp_2_dp_1.yaml(0 hunks)tests/fault_tolerance/configs/agg_tp_2_dp_2.yaml(0 hunks)tests/fault_tolerance/configs/agg_tp_2_dp_4.yaml(0 hunks)tests/fault_tolerance/configs/disagg_p_tp_1_dp_1_d_tp_1_dp_1.yaml(0 hunks)tests/fault_tolerance/configs/disagg_p_tp_1_dp_1_d_tp_2_dp_1.yaml(0 hunks)tests/fault_tolerance/configs/disagg_p_tp_1_dp_2_d_tp_2_dp_1.yaml(0 hunks)tests/fault_tolerance/configs/disagg_p_tp_1_dp_4_d_tp_4_dp_1.yaml(0 hunks)tests/fault_tolerance/configs/disagg_p_tp_2_dp_1_d_tp_4_dp_1.yaml(0 hunks)tests/fault_tolerance/configs/disagg_p_tp_2_dp_2_d_tp_4_dp_1.yaml(0 hunks)tests/fault_tolerance/conftest.py(0 hunks)tests/fault_tolerance/parse_results.py(0 hunks)tests/fault_tolerance/scenarios.py(0 hunks)tests/fault_tolerance/test_runner.py(0 hunks)tests/fault_tolerance/utils/circus_controller.py(0 hunks)tests/fault_tolerance/utils/metrics.py(0 hunks)tests/serve/test_dynamo_serve.py(0 hunks)tests/utils/deployment_graph.py(1 hunks)
💤 Files with no reviewable changes (20)
- tests/fault_tolerance/configs/agg_tp_2_dp_4.yaml
- tests/fault_tolerance/configs/disagg_p_tp_2_dp_1_d_tp_4_dp_1.yaml
- tests/fault_tolerance/configs/agg_tp_1_dp_8.yaml
- tests/fault_tolerance/configs/agg_tp_2_dp_2.yaml
- tests/fault_tolerance/configs/disagg_p_tp_1_dp_1_d_tp_1_dp_1.yaml
- tests/fault_tolerance/configs/disagg_p_tp_1_dp_4_d_tp_4_dp_1.yaml
- tests/fault_tolerance/configs/disagg_p_tp_1_dp_2_d_tp_2_dp_1.yaml
- tests/fault_tolerance/configs/agg_tp_1_dp_1.yaml
- tests/fault_tolerance/configs/disagg_p_tp_1_dp_1_d_tp_2_dp_1.yaml
- tests/fault_tolerance/configs/disagg_p_tp_2_dp_2_d_tp_4_dp_1.yaml
- tests/fault_tolerance/configs/agg_tp_1_dp_4.yaml
- tests/fault_tolerance/configs/agg_tp_2_dp_1.yaml
- tests/fault_tolerance/utils/metrics.py
- tests/fault_tolerance/scenarios.py
- tests/serve/test_dynamo_serve.py
- tests/fault_tolerance/utils/circus_controller.py
- tests/fault_tolerance/test_runner.py
- tests/fault_tolerance/conftest.py
- tests/fault_tolerance/README.md
- tests/fault_tolerance/parse_results.py
🧰 Additional context used
🧠 Learnings (1)
📓 Common learnings
Learnt from: nnshah1
PR: ai-dynamo/dynamo#1444
File: tests/fault_tolerance/scenarios.py:57-57
Timestamp: 2025-07-01T15:39:56.789Z
Learning: The fault tolerance tests in tests/fault_tolerance/ are designed to run only in the mounted container environment, so hardcoded absolute paths with `/workspace/` prefix are intentional and should not be changed to relative paths.
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Build and Test - vllm
🔇 Additional comments (1)
tests/utils/deployment_graph.py (1)
16-17: Import cleanup improves clarityRemoving the unused
fieldandCallablesymbols tightens the file’s surface area and avoids misleading readers about non-existent functionality.
Overview:
Removing outdated tests.
Details:
Where should the reviewer start?
Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)
Summary by CodeRabbit
Documentation
Tests
DeploymentGraphtest utility class.Chores