From 8b52fa6b4209c79e623fc3cc2c4756758c920c3c Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:07:41 +0200 Subject: [PATCH] skip `test_encode_decode_fast_slow_all_tokens` for now (#30044) skip test_encode_decode_fast_slow_all_tokens for now Co-authored-by: ydshieh --- tests/test_tokenization_common.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_tokenization_common.py b/tests/test_tokenization_common.py index 4ff17ab557..e98f09d431 100644 --- a/tests/test_tokenization_common.py +++ b/tests/test_tokenization_common.py @@ -1580,6 +1580,10 @@ class TokenizerTesterMixin: self.assertEqual(len(overflowing_tokens), 2 + stride) self.assertEqual(overflowing_tokens, seq1_tokens[-(2 + stride) :]) + # TODO: FIXME @ArthurZucker + @unittest.skip( + reason="start to fail after # 29473. See https://github.com/huggingface/transformers/pull/29473#pullrequestreview-1945687810" + ) @slow @require_read_token def test_encode_decode_fast_slow_all_tokens(self):