"tests/vscode:/vscode.git/clone" did not exist on "a9653400d3fac5b316429f641ae61846ae024cc7"
Unverified Commit 5c66378c authored by Lysandre Debut's avatar Lysandre Debut Committed by GitHub
Browse files

[Tokenizers] Skip tests temporarily (#26574)

* Skip tests temporarily

* style

* Add additional test
parent 2c7b26f5
......@@ -201,6 +201,10 @@ class MBartTokenizationTest(TokenizerTesterMixin, unittest.TestCase):
shutil.rmtree(tmpdirname2)
@unittest.skip("Need to fix this after #26538")
def test_training_new_tokenizer(self):
pass
@require_torch
@require_sentencepiece
......
......@@ -288,6 +288,10 @@ class NllbTokenizationTest(TokenizerTesterMixin, unittest.TestCase):
self.assertTrue(special_token_id in p_output)
self.assertTrue(special_token_id in cr_output)
@unittest.skip("Need to fix this after #26538")
def test_training_new_tokenizer(self):
pass
@require_torch
@require_sentencepiece
......
......@@ -129,6 +129,14 @@ class PegasusTokenizationTest(TokenizerTesterMixin, unittest.TestCase):
revision="ba85d0851d708441f91440d509690f1ab6353415",
)
@unittest.skip("Need to fix this after #26538")
def test_training_new_tokenizer(self):
pass
@unittest.skip("Need to fix this after #26538")
def test_training_new_tokenizer_with_special_tokens_change(self):
pass
@require_sentencepiece
@require_tokenizers
......
......@@ -176,6 +176,7 @@ class VitsModelTest(ModelTesterMixin, PipelineTesterMixin, unittest.TestCase):
def test_config(self):
self.config_tester.run_common_tests()
@unittest.skip("Need to fix this after #26538")
def test_model_forward(self):
set_seed(12345)
global_rng.seed(12345)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment