(*args: str)
| 42 | |
| 43 | |
| 44 | def invoke_call_ok(*args: str) -> bool: |
| 45 | try: |
| 46 | subprocess.check_call(args) |
| 47 | return True |
| 48 | except: |
| 49 | return False |
| 50 | |
| 51 | |
| 52 | def invoke_output(*args: str, no_log: bool = False) -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…