(self, env, acme)
| 16 | |
| 17 | @pytest.fixture(autouse=True, scope='class') |
| 18 | def _class_scope(self, env, acme): |
| 19 | acme.start(config='default') |
| 20 | env.check_acme() |
| 21 | env.clear_store() |
| 22 | domain = env.get_class_domain(self.__class__) |
| 23 | mdA = "a-" + domain |
| 24 | mdB = "b-" + domain |
| 25 | self.configure_httpd(env, [mdA, mdB]).install() |
| 26 | env.apache_stop() |
| 27 | assert env.apache_restart() == 0, f'{env.apachectl_stderr}' |
| 28 | assert env.await_completion([mdA, mdB]) |
| 29 | env.check_md_complete(mdA) |
| 30 | env.check_md_complete(mdB) |
| 31 | |
| 32 | @pytest.fixture(autouse=True, scope='function') |
| 33 | def _method_scope(self, env, request): |
nothing calls this directly
no test coverage detected