(self, env, acme)
| 17 | |
| 18 | @pytest.fixture(autouse=True, scope='class') |
| 19 | def _class_scope(self, env, acme): |
| 20 | env.APACHE_CONF_SRC = "data/test_auto" |
| 21 | acme.start(config='default') |
| 22 | env.check_acme() |
| 23 | env.clear_store() |
| 24 | MDConf(env).install() |
| 25 | assert env.apache_restart() == 0, f'{env.apachectl_stderr}' |
| 26 | |
| 27 | @pytest.fixture(autouse=True, scope='function') |
| 28 | def _method_scope(self, env, request): |
nothing calls this directly
no test coverage detected