(args: Sequence[str])
| 39 | |
| 40 | |
| 41 | def main(args: Sequence[str]) -> int: |
| 42 | state = setup_state(args) |
| 43 | from tox.provision import provision # noqa: PLC0415 |
| 44 | |
| 45 | result = provision(state) |
| 46 | if result is not False: |
| 47 | return result |
| 48 | handler = state._options.cmd_handlers[state.conf.options.command] # noqa: SLF001 |
| 49 | return handler(state) |
| 50 | |
| 51 | |
| 52 | def setup_state(args: Sequence[str]) -> State: |
no test coverage detected
searching dependent graphs…