| 21 | |
| 22 | |
| 23 | class ValidOutputDir: |
| 24 | local_path = "" |
| 25 | remote_path = "" |
| 26 | tag = "" |
| 27 | |
| 28 | def __init__(self, local_path="", remote_path=""): |
| 29 | self.local_path = local_path |
| 30 | self.remote_path = remote_path |
| 31 | |
| 32 | |
| 33 | class BenchMarkRunnerBase: |
no outgoing calls
no test coverage detected