(self, env, acme)
| 11 | |
| 12 | @pytest.fixture(autouse=True, scope='class') |
| 13 | def _class_scope(self, env, acme): |
| 14 | env.APACHE_CONF_SRC = "data/test_auto" |
| 15 | acme.start(config='default') |
| 16 | env.check_acme() |
| 17 | env.clear_store() |
| 18 | MDConf(env).install() |
| 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