Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
ydshieh committed Feb 7, 2024
1 parent 14f24b9 commit 9e5d347
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/models/llama/test_train_llama.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import unittest

from ..test_model import TestModelTraining
from ..test_model import ModelTrainingTestMixin


class LLamaModelTrainingTest(TestModelTraining, unittest.TestCase):
class LLamaModelTrainingTest(ModelTrainingTestMixin, unittest.TestCase):

def prepare_command(self):
tmp_dir = "my_dir"
Expand Down
2 changes: 1 addition & 1 deletion tests/models/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
import run_wav2vec2_pretraining_no_trainer


class TestModelTraining:
class ModelTrainingTestMixin:

def prepare_command(self):
raise NotImplementedError
Expand Down

0 comments on commit 9e5d347

Please sign in to comment.