From c6f957f3074800ce8cef47cfbf5a8c3440acc71e Mon Sep 17 00:00:00 2001 From: mibe Date: Tue, 6 Feb 2024 11:37:06 +0000 Subject: [PATCH] Running all tests [run-notebook-tests] --- test/notebooks/nbtest_sagemaker.py | 1 - test/notebooks/nbtest_transformers.py | 12 ++++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/test/notebooks/nbtest_sagemaker.py b/test/notebooks/nbtest_sagemaker.py index 17757d51..967b1ecc 100644 --- a/test/notebooks/nbtest_sagemaker.py +++ b/test/notebooks/nbtest_sagemaker.py @@ -173,7 +173,6 @@ def continuous_job_polling(): ) -@pytest.mark.skip('investigating the notebook test failure') def test_sagemaker(access_to_temp_secret_store, uploading_hack): store_path, store_password = access_to_temp_secret_store diff --git a/test/notebooks/nbtest_transformers.py b/test/notebooks/nbtest_transformers.py index 40bcb484..a05fa43e 100644 --- a/test/notebooks/nbtest_transformers.py +++ b/test/notebooks/nbtest_transformers.py @@ -9,12 +9,12 @@ "notebook_file", [ 'sequence_classification.ipynb', - pytest.param('question_answering.ipynb', marks=pytest.mark.skip('leaving just one test')), - pytest.param('masked_modelling.ipynb', marks=pytest.mark.skip('leaving just one test')), - pytest.param('token_classification.ipynb', marks=pytest.mark.skip('leaving just one test')), - pytest.param('text_generation.ipynb', marks=pytest.mark.skip('leaving just one test')), - pytest.param('translation.ipynb', marks=pytest.mark.skip('leaving just one test')), - pytest.param('zero_shot_classification.ipynb', marks=pytest.mark.skip('leaving just one test')) + 'question_answering.ipynb', + 'masked_modelling.ipynb', + 'token_classification.ipynb', + 'text_generation.ipynb', + 'translation.ipynb', + 'zero_shot_classification.ipynb' ] ) def test_transformers(notebook_runner, uploading_hack, notebook_file) -> None: