(parser: ToxParser)
| 26 | |
| 27 | @impl |
| 28 | def tox_add_option(parser: ToxParser) -> None: |
| 29 | our = parser.add_command( |
| 30 | "schema", [], "Generate schema for tox configuration", gen_schema, inherit=frozenset({CORE}) |
| 31 | ) |
| 32 | our.add_argument("--strict", action="store_true", help="Disallow extra properties in configuration") |
| 33 | |
| 34 | |
| 35 | def gen_schema(state: State) -> int: |
nothing calls this directly
no test coverage detected
searching dependent graphs…