Skip to content

Commit

Permalink
Trying to get the translation test working
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Feb 1, 2024
1 parent 9b36680 commit 89ea2ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/notebooks/nbtest_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 89ea2ac

Please sign in to comment.