From 89ea2ac61f278b60b2bd91dc3b2f1c96a2192a97 Mon Sep 17 00:00:00 2001 From: mibe Date: Thu, 1 Feb 2024 16:09:35 +0000 Subject: [PATCH] Trying to get the translation test working --- test/notebooks/nbtest_transformers.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/notebooks/nbtest_transformers.py b/test/notebooks/nbtest_transformers.py index c1e853a2..9f4dbc6e 100644 --- a/test/notebooks/nbtest_transformers.py +++ b/test/notebooks/nbtest_transformers.py @@ -9,18 +9,18 @@ "notebook_file", [ pytest.param('sequence_classification.ipynb', - marks=pytest.mark.xfail(reason='just want to see if the translation works')), + marks=pytest.mark.skip(reason='just want to see if the translation works')), pytest.param('question_answering.ipynb', - marks=pytest.mark.xfail(reason='just want to see if the translation works')), + marks=pytest.mark.skip(reason='just want to see if the translation works')), pytest.param('masked_modelling.ipynb', - marks=pytest.mark.xfail(reason='just want to see if the translation works')), + marks=pytest.mark.skip(reason='just want to see if the translation works')), pytest.param('token_classification.ipynb', - marks=pytest.mark.xfail(reason='just want to see if the translation works')), + marks=pytest.mark.skip(reason='just want to see if the translation works')), pytest.param('text_generation.ipynb', - marks=pytest.mark.xfail(reason='just want to see if the translation works')), + marks=pytest.mark.skip(reason='just want to see if the translation works')), 'translation.ipynb', pytest.param('zero_shot_classification.ipynb', - marks=pytest.mark.xfail(reason='just want to see if the translation works')), + marks=pytest.mark.skip(reason='just want to see if the translation works')), ] ) def test_transformers(notebook_runner, uploading_hack, notebook_file) -> None: