Skip to content

Commit

Permalink
2023-10-09 nightly release (16967f0)
Browse files Browse the repository at this point in the history
  • Loading branch information
pytorchbot committed Oct 9, 2023
1 parent 223f6c8 commit 1f50d63
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/test_transforms_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
from torchvision.transforms.v2.functional._utils import _get_kernel, _register_kernel_internal


# FIXME: Put this back once https://github.com/pytorch/vision/issues/8030
# and https://github.com/pytorch/pytorch/issues/110857 are addressed
# turns all warnings into errors for this module
# pytestmark = pytest.mark.filterwarnings("error")


@pytest.fixture(autouse=True)
def fix_rng_seed():
set_rng_seed(0)
Expand Down Expand Up @@ -539,10 +545,6 @@ def affine_bounding_boxes(bounding_boxes):
)


# turns all warnings into errors for this module
pytestmark = pytest.mark.filterwarnings("error")


class TestResize:
INPUT_SIZE = (17, 11)
OUTPUT_SIZES = [17, [17], (17,), [12, 13], (12, 13)]
Expand Down

0 comments on commit 1f50d63

Please sign in to comment.