diff options
Diffstat (limited to 'test/modules/md/conftest.py')
-rwxr-xr-x | test/modules/md/conftest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/modules/md/conftest.py b/test/modules/md/conftest.py index 0f9e4a9f49..a7b064b6a9 100755 --- a/test/modules/md/conftest.py +++ b/test/modules/md/conftest.py @@ -59,3 +59,7 @@ def acme(env): if acme_server is not None: acme_server.stop() +@pytest.fixture(autouse=True, scope="package") +def _stop_package_scope(env): + yield + assert env.apache_stop() == 0 |