-
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
remove obsolete transforms tests #7678
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/vision/7678
Note: Links to docs will display an error until the docs builds have been completed. ❌ 5 New FailuresAs of commit 965a5c5: NEW FAILURES - The following jobs have failed:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
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.
Thanks @pmeier
test/test_functional_tensor.py
Outdated
@@ -67,7 +67,6 @@ def test_scale_channel(): | |||
|
|||
|
|||
class TestRotate: | |||
|
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.
Is that a new black
thing??
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.
We are pinning the version
vision/.pre-commit-config.yaml
Line 18 in 8324c48
- black == 22.3.0 |
so let's hope this was just a fluke on my side. I'll revert these.
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.
It indeed comes from a newer black
version that I have on my system. Since the removed blank lines don't conflict with the "old" style, it was not automatically reverted by running the pre-commit
hook. I opened #7680 to upgrade our linters.
Reviewed By: vmoens Differential Revision: D47186581 fbshipit-source-id: b7a147e32fa281fb29aef68319e25cb7491855b7
As mentioned in #7562 (comment) and confirmed in #7562 (comment), both tests deleted in this PR come from a time when we had our custom
interpolate
kernels, since PyTorch core didn't support antialiasing. This is no longer the case and thus the tests are obsolete.cc @vfdev-5