Typed arguments for the test runner
| 46 | |
| 47 | @dataclass |
| 48 | class Args: |
| 49 | """Typed arguments for the test runner""" |
| 50 | |
| 51 | test: Optional[str] = None |
| 52 | verbose: bool = False |
| 53 | jobs: Optional[int] = None |
| 54 | enable_stack_trace: bool = False |
| 55 | |
| 56 | |
| 57 | def _is_test_executable(f: Path) -> bool: |
no outgoing calls