(self)
| 31 | @skip_if_windows |
| 32 | class TestVerifyMetaData(unittest.TestCase): |
| 33 | def setUp(self): |
| 34 | self.config = testing_data_config("configs", "test_meta_file") |
| 35 | download_url_or_skip_test( |
| 36 | url=self.config["url"], |
| 37 | filepath=SCHEMA_FILE, |
| 38 | hash_val=self.config.get("hash_val"), |
| 39 | hash_type=self.config.get("hash_type", "sha256"), |
| 40 | ) |
| 41 | |
| 42 | @parameterized.expand([TEST_CASE_1]) |
| 43 | def test_verify(self, meta_file, schema_file): |
nothing calls this directly
no test coverage detected