(self, env, acme)
| 10 | |
| 11 | @pytest.fixture(autouse=True, scope='class') |
| 12 | def _class_scope(self, env, acme): |
| 13 | acme.start(config='default') |
| 14 | env.check_acme() |
| 15 | env.clear_store() |
| 16 | conf = MDConf(env) |
| 17 | conf.install() |
| 18 | |
| 19 | assert env.apache_restart() == 0, f'{env.apachectl_stderr}' |
| 20 | |
| 21 | @pytest.fixture(autouse=True, scope='function') |
| 22 | def _method_scope(self, env, request): |
nothing calls this directly
no test coverage detected