(parser: ToxParser)
| 44 | |
| 45 | @impl |
| 46 | def tox_add_option(parser: ToxParser) -> None: |
| 47 | from tox.tox_env.register import REGISTER # noqa: PLC0415 |
| 48 | |
| 49 | parser.add_argument( |
| 50 | "--runner", |
| 51 | dest="default_runner", |
| 52 | help="the tox run engine to use when not explicitly stated in tox env configuration", |
| 53 | default=REGISTER.default_env_runner, |
| 54 | choices=list(REGISTER.env_runners), |
| 55 | ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…