(config, start_path)
| 8 | from pyhttpd.env import HttpdTestEnv |
| 9 | |
| 10 | def pytest_report_header(config, start_path): |
| 11 | env = HttpdTestEnv() |
| 12 | return f"[apache httpd: {env.get_httpd_version()}, mpm: {env.mpm_module}, {env.prefix}]" |
| 13 | |
| 14 | def pytest_addoption(parser): |
| 15 | parser.addoption("--repeat", action="store", type=int, default=1, |
nothing calls this directly
no test coverage detected