(self, env, acme)
| 42 | |
| 43 | @pytest.fixture(autouse=True, scope='class') |
| 44 | def _class_scope(self, env, acme): |
| 45 | acme.start(config='eab') |
| 46 | env.check_acme() |
| 47 | env.clear_store() |
| 48 | MDConf(env).install() |
| 49 | assert env.apache_restart() == 0, f'{env.apachectl_stderr}' |
| 50 | |
| 51 | @pytest.fixture(autouse=True, scope='function') |
| 52 | def _method_scope(self, env, request): |
nothing calls this directly
no test coverage detected