chore: Remove 4 redundant Meta Llama integration tests#2646
Merged
Conversation
Member
Author
|
@mpangrazzi this is hopefully a fix for our rate limiting CI Meta Llama failures. Let's remove 4 redundant integration tests and see if we don't get rate limited as often |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why:
Reduces number of LLMs calls for meta_llama integration tests by removing 4 redundant tests that duplicate functionality already covered by other integration tests. This should hopefully stop CI rate limit failures we get from Meta.
What:
test_live_run_async- duplicates basic async functionality covered by other async teststest_live_run_with_response_format_json_schema- redundant with Pydantic response format testtest_live_run_with_tools- subset oftest_live_run_with_tools_and_responsetest_live_run_with_tools_streaming_async- duplicates sync version and other async tool testsHow can it be used:
N/A
How did you test it:
Notes for the reviewer:
This is a straightforward cleanup - each removed test's functionality is still covered by one or more remaining tests. The reduction in test count (14 → 10) maintains quality while improving CI efficiency.