-
-
Notifications
You must be signed in to change notification settings - Fork 11.3k
[CI] Fix Nightly Failures #17997
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
[CI] Fix Nightly Failures #17997
Changes from all commits
192e140
344f3d1
043d1f1
934ec95
f6f8e8a
24afa7f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,12 @@ | |
|
|
||
| from ....utils import RemoteOpenAIServer | ||
|
|
||
| # TODO(@darklight): Remove this skip once the CI is fixed. | ||
| pytest.skip(reason=("Failing in the CI due to env variable mismatch. " | ||
| "Setting the XFORMERS does not seem to be working " | ||
| "in the CI environment properly."), | ||
| allow_module_level=True) | ||
|
Comment on lines
+18
to
+22
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Honestly I have no idea why this is happening. The test passes locally...
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Its due to some env variable getting set that overrides the attn backend gloablly
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Opened #18109 to work around this |
||
|
|
||
| # GritLM embedding implementation is only supported by XFormers backend. | ||
| pytestmark = pytest.mark.skipif(not importlib.util.find_spec("xformers"), | ||
| reason="GritLM requires XFormers") | ||
|
|
||
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.
This should be resolved by #18086