From 16967f0920a67d264f1a680c389e16cd94ef7e12 Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Mon, 9 Oct 2023 10:52:22 +0100 Subject: [PATCH] Temporarily disable 'error on warnings' pytest filter (#8033) --- test/test_transforms_v2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_transforms_v2.py b/test/test_transforms_v2.py index 4f8d0027bd6..ae150b16d2e 100644 --- a/test/test_transforms_v2.py +++ b/test/test_transforms_v2.py @@ -52,8 +52,10 @@ 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") +# pytestmark = pytest.mark.filterwarnings("error") @pytest.fixture(autouse=True)