(self)
| 44 | super().tearDown() |
| 45 | |
| 46 | def test_run_testing_vmaf(self): |
| 47 | exe = VmafConfig.root_path('python', 'vmaf', 'script', 'run_testing.py') |
| 48 | cmd = "{exe} VMAF {dataset} --parallelize --suppress-plot".format( |
| 49 | exe=exe, dataset=self.dataset_filename) |
| 50 | ret = run_process(cmd, shell=True) |
| 51 | self.assertEqual(ret, 0) |
| 52 | |
| 53 | def test_run_testing_vmaf_raw_dataset(self): |
| 54 | exe = VmafConfig.root_path('python', 'vmaf', 'script', 'run_testing.py') |
nothing calls this directly
no test coverage detected