(config: Config)
| 225 | |
| 226 | |
| 227 | def pytest_configure(config: Config) -> None: |
| 228 | reporter = TerminalReporter(config, sys.stdout) |
| 229 | config.pluginmanager.register(reporter, "terminalreporter") |
| 230 | if config.option.debug or config.option.traceconfig: |
| 231 | |
| 232 | def mywriter(tags, args): |
| 233 | msg = " ".join(map(str, args)) |
| 234 | reporter.write_line("[traceconfig] " + msg) |
| 235 | |
| 236 | config.trace.root.setprocessor("pytest:config", mywriter) |
| 237 | |
| 238 | |
| 239 | def getreportopt(config: Config) -> str: |
nothing calls this directly
no test coverage detected