(self, pytestconfig=None)
| 57 | class H1TestEnv(HttpdTestEnv): |
| 58 | |
| 59 | def __init__(self, pytestconfig=None): |
| 60 | super().__init__(pytestconfig=pytestconfig) |
| 61 | self.add_httpd_log_modules(["http", "core"]) |
| 62 | |
| 63 | def setup_httpd(self, setup: HttpdTestSetup = None): |
| 64 | super().setup_httpd(setup=H1TestSetup(env=self)) |
nothing calls this directly
no test coverage detected