(self, env: 'HttpdTestEnv')
| 15 | class H2TestSetup(HttpdTestSetup): |
| 16 | |
| 17 | def __init__(self, env: 'HttpdTestEnv'): |
| 18 | super().__init__(env=env) |
| 19 | self.add_source_dir(os.path.dirname(inspect.getfile(H2TestSetup))) |
| 20 | self.add_modules(["http2", "proxy_http2", "cgid", "autoindex", "ssl", "include"]) |
| 21 | |
| 22 | def make(self): |
| 23 | super().make() |
nothing calls this directly
no test coverage detected