From d110006c30712bc5aca3be39a96ed385e3a4c899 Mon Sep 17 00:00:00 2001 From: vasqu Date: Fri, 21 Nov 2025 16:45:15 +0100 Subject: [PATCH 1/3] skip --- .../efficientloftr/test_image_processing_efficientloftr.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/models/efficientloftr/test_image_processing_efficientloftr.py b/tests/models/efficientloftr/test_image_processing_efficientloftr.py index 53897ff1abe5..8d7830233095 100644 --- a/tests/models/efficientloftr/test_image_processing_efficientloftr.py +++ b/tests/models/efficientloftr/test_image_processing_efficientloftr.py @@ -128,3 +128,7 @@ def test_fast_is_faster_than_slow(self): self.assertLessEqual( fast_time, slow_time * 1.2, "Fast processor should not be significantly slower than slow processor" ) + + @unittest.skip(reason="FIXME @yonigozlan failing after #42018") + def test_post_processing_keypoint_matching_with_padded_match_indices(self): + pass From 0d4384c2b3a6d82912ce887f96059c5d337003b0 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:59:47 +0100 Subject: [PATCH 2/3] Update tests/models/efficientloftr/test_image_processing_efficientloftr.py --- .../efficientloftr/test_image_processing_efficientloftr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/models/efficientloftr/test_image_processing_efficientloftr.py b/tests/models/efficientloftr/test_image_processing_efficientloftr.py index 8d7830233095..8d0a020bef90 100644 --- a/tests/models/efficientloftr/test_image_processing_efficientloftr.py +++ b/tests/models/efficientloftr/test_image_processing_efficientloftr.py @@ -129,6 +129,7 @@ def test_fast_is_faster_than_slow(self): fast_time, slow_time * 1.2, "Fast processor should not be significantly slower than slow processor" ) - @unittest.skip(reason="FIXME @yonigozlan failing after #42018") + # TODO: FIXME @yonigozlan + @unittest.skip(reason="failing after #42018") def test_post_processing_keypoint_matching_with_padded_match_indices(self): pass From bf2662cd7a9e4f25f61bd525e98e0a0de7606a69 Mon Sep 17 00:00:00 2001 From: vasqu Date: Fri, 21 Nov 2025 17:01:06 +0100 Subject: [PATCH 3/3] style --- .../efficientloftr/test_image_processing_efficientloftr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/models/efficientloftr/test_image_processing_efficientloftr.py b/tests/models/efficientloftr/test_image_processing_efficientloftr.py index 8d0a020bef90..c8aa195cb677 100644 --- a/tests/models/efficientloftr/test_image_processing_efficientloftr.py +++ b/tests/models/efficientloftr/test_image_processing_efficientloftr.py @@ -129,7 +129,7 @@ def test_fast_is_faster_than_slow(self): fast_time, slow_time * 1.2, "Fast processor should not be significantly slower than slow processor" ) - # TODO: FIXME @yonigozlan + # TODO: FIXME @yonigozlan @unittest.skip(reason="failing after #42018") def test_post_processing_keypoint_matching_with_padded_match_indices(self): pass