-
Notifications
You must be signed in to change notification settings - Fork 227
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
Diffusers: Simplified the README files. Updated CI tests. #1718
base: main
Are you sure you want to change the base?
Diffusers: Simplified the README files. Updated CI tests. #1718
Conversation
63b31bb
to
0b0f3e0
Compare
c11e62b
to
02dce99
Compare
tests/test_diffusers.py
Outdated
@@ -6009,6 +6025,7 @@ def test_flux_prompt_embeds(self): | |||
@slow | |||
@check_gated_model_access("black-forest-labs/FLUX.1-dev") | |||
@pytest.mark.skipif(not IS_GAUDI2, reason="does not fit into Gaudi1 memory") | |||
@legacy |
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.
remove legacy for this test
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.
Fixed: 2c4e06e
tests/test_diffusers.py
Outdated
@@ -203,6 +203,14 @@ def check_8xhpu(test_case): | |||
return pytest.mark.skipif(skip, reason="test requires 8xHPU multi-card system")(test_case) | |||
|
|||
|
|||
def legacy(test_case): | |||
""" | |||
Decorator skipping a test if it's old |
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.
Decorator used to skip tests for legacy models
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.
Fixed: 2c4e06e
Signed-off-by: Daniel Socek <[email protected]>
What does this PR do?
Following the strategy in #1700 and #1709, this PR simplifies the stable diff README,
Next we will work on training after #1651 is merged.
Fixes # (issue)
Before submitting