-
Notifications
You must be signed in to change notification settings - Fork 7k
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 SBU download as not accessible in tests #7970
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/vision/7970
Note: Links to docs will display an error until the docs builds have been completed. ✅ You can merge normally! (2 Unrelated Failures)As of commit 713219f with merge base 4cb3d80 (): FLAKY - The following jobs failed but were likely due to flakiness present on trunk:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@@ -391,4 +391,4 @@ def test_url_is_not_accessible(url): | |||
If you see this test failing, find the offending dataset in the parametrization and move it to | |||
``test_url_is_accessible``. | |||
""" | |||
retry(lambda: assert_url_is_accessible(url)) | |||
assert_url_is_accessible(url) |
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.
Driveby. Since we assert that the URL is not accessible by trying and xfailing afterwards, there is no need for retries.
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.
Stamping, thanks @pmeier !
Hey @pmeier! You merged this PR, but no labels were added. The list of valid labels is available at https://github.com/pytorch/vision/blob/main/.github/process_commit.py |
Reviewed By: matteobettini Differential Revision: D49600773 fbshipit-source-id: c5d27b90c3548b9e5253fba7542bf16b5bcfabad
Addresses #7964. Since final RC for upcoming release is already cut, we can just leave it in the "not accessible" list until next release. Maybe it comes up again.