fix: remove non-existent litellm_mcps_tests_coverage from coverage combine - #25737
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR removes Confidence Score: 5/5Safe to merge — removes a non-existent path that was breaking the upload-coverage CI step, with no other side effects. Single-line CI config fix that removes a path never produced by any job. Confirmed via full-config grep that No files require special attention.
|
| Filename | Overview |
|---|---|
| .circleci/config.yml | Removes litellm_mcps_tests_coverage from the coverage combine command — confirmed no CI job produces this path, while the related mcp_coverage path is correctly retained. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[CI Jobs Produce Coverage Artifacts] --> B[realtime_translation_coverage]
A --> C[ocr_coverage]
A --> D[search_coverage]
A --> E[mcp_coverage]
A --> F[logging_coverage]
A --> G[audio_coverage]
A --> H[local_testing_part1/2_coverage]
A --> I[pass_through_unit_tests_coverage]
A --> J[batches_coverage]
A --> K[guardrails_coverage]
A --> L[redis_caching_coverage]
A --> X[litellm_mcps_tests_coverage - Never produced]
B & C & D & E & F & G & H & I & J & K & L --> M[coverage combine]
X -. was incorrectly referenced .-> M
M --> N[coverage xml]
N --> O[codecov upload]
style X fill:#ffcccc,stroke:#cc0000
style M fill:#ccffcc,stroke:#00aa00
Reviews (1): Last reviewed commit: "fix: remove non-existent litellm_mcps_te..." | Re-trigger Greptile
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
…s-coverage-path fix: remove non-existent litellm_mcps_tests_coverage from coverage combine
Summary
litellm_mcps_tests_coveragefrom thecoverage combinecommand in.circleci/config.ymlupload-coveragestep to consistently fail withCouldn't combine from non-existent path 'litellm_mcps_tests_coverage'Test plan
upload-coverageCircleCI job passes after this change