(self, parser, namespace, values, option_string=None)
| 34 | ) |
| 35 | |
| 36 | def __call__(self, parser, namespace, values, option_string=None): |
| 37 | setattr(namespace, self.dest, self.const) |
| 38 | |
| 39 | # We should only skip the rest of the parsing after preparse is done. |
| 40 | if getattr(parser._parser, "after_preparse", False): |
| 41 | raise PrintHelp |
| 42 | |
| 43 | |
| 44 | def pytest_addoption(parser: Parser) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected