-
Notifications
You must be signed in to change notification settings - Fork 15
mark vLLM policy integration tests as async #416
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
mark vLLM policy integration tests as async #416
Conversation
assert vllm_output != "" | ||
assert policy_output != "" | ||
if vllm_output != policy_output: | ||
print(f"❌ Got different results: {vllm_output} vs. {policy_output}") |
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.
I actually have a WIP PR but I'll abandon that.
Could you change this to assert
so that the test actually fail?
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.
ah duh thanks, will update
assert vllm_output != "" | ||
assert policy_output != "" | ||
if vllm_output != policy_output: | ||
print(f"❌ Got different results: {vllm_output} vs. {policy_output}") |
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.
Same here
based on CI it seems this is all just working? does this fully close out #411? |
@allenwang28 nah rn the CI is just running on unit tests. So we need to fix the ones in #411 and then can add the integration tests to CI |
Addresses part of #411
Before:
After: