diff --git a/tests/span/test_model_card.py b/tests/span/test_model_card.py index 60fd830b..6e4585f8 100644 --- a/tests/span/test_model_card.py +++ b/tests/span/test_model_card.py @@ -26,6 +26,7 @@ def test_model_card(absa_dataset: Dataset, tmp_path: Path) -> None: logging_steps=1, max_steps=2, eval_strategy="steps", + save_strategy="no", ) trainer = AbsaTrainer( model=model, diff --git a/tests/test_model_card.py b/tests/test_model_card.py index 910f7237..9bdb199c 100644 --- a/tests/test_model_card.py +++ b/tests/test_model_card.py @@ -36,6 +36,7 @@ def test_model_card(tmp_path: Path) -> None: logging_steps=1, max_steps=2, eval_strategy="steps", + save_strategy="no", ) trainer = Trainer( model=model,