(cls, *components, bypass_download=False)
| 216 | |
| 217 | @classmethod |
| 218 | def test_resource_path(cls, *components, bypass_download=False): |
| 219 | local_path = cls.root_path('python', 'test', 'resource', *components) |
| 220 | if bypass_download: |
| 221 | pass |
| 222 | else: |
| 223 | remote_path = os.path.join(VMAF_RESOURCE_ROOT, 'python', 'test', 'resource', *components) |
| 224 | download_reactively(local_path, remote_path) |
| 225 | return local_path |
| 226 | |
| 227 | @classmethod |
| 228 | def tools_resource_path(cls, *components): |
no test coverage detected