(parser: ToxParser)
| 18 | |
| 19 | @impl |
| 20 | def tox_add_option(parser: ToxParser) -> None: |
| 21 | help_msg = "sets up a development environment at ENVDIR based on the tox configuration specified " |
| 22 | our = parser.add_command("devenv", ["d"], help_msg, devenv) |
| 23 | our.add_argument("devenv_path", metavar="path", default=Path("venv"), nargs="?", type=Path) |
| 24 | register_env_select_flags(our, default=CliEnv("py"), multiple=False) |
| 25 | env_run_create_flags(our, mode="devenv") |
| 26 | |
| 27 | |
| 28 | def devenv(state: State) -> int: |
nothing calls this directly
no test coverage detected
searching dependent graphs…