| 55 | |
| 56 | |
| 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)) |
| 65 | |
| 66 | |
| 67 | class H1Conf(HttpdConf): |
no outgoing calls