(self)
| 20 | |
| 21 | class H4ArgumentParserTest(unittest.TestCase): |
| 22 | def setUp(self): |
| 23 | self.parser = H4ArgumentParser((ModelArguments, DataArguments, SFTConfig)) |
| 24 | self.yaml_file_path = "tests/fixtures/config_sft_full.yaml" |
| 25 | |
| 26 | def test_load_yaml(self): |
| 27 | model_args, data_args, training_args = self.parser.parse_yaml_file(os.path.abspath(self.yaml_file_path)) |
nothing calls this directly
no test coverage detected