| 16 | |
| 17 | |
| 18 | class CoreTestEnv(HttpdTestEnv): |
| 19 | |
| 20 | def __init__(self, pytestconfig=None): |
| 21 | super().__init__(pytestconfig=pytestconfig) |
| 22 | self.add_httpd_log_modules(["http", "core"]) |
| 23 | |
| 24 | def setup_httpd(self, setup: HttpdTestSetup = None): |
| 25 | super().setup_httpd(setup=CoreTestSetup(env=self)) |
no outgoing calls