diff options
Diffstat (limited to 'test/modules/http1/conftest.py')
-rw-r--r-- | test/modules/http1/conftest.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/modules/http1/conftest.py b/test/modules/http1/conftest.py index 0ebb439129..33a16a1170 100644 --- a/test/modules/http1/conftest.py +++ b/test/modules/http1/conftest.py @@ -34,14 +34,3 @@ def env(pytestconfig) -> H1TestEnv: env.apache_access_log_clear() env.httpd_error_log.clear_log() return env - - -@pytest.fixture(autouse=True, scope="package") -def _session_scope(env): - yield - assert env.apache_stop() == 0 - errors, warnings = env.httpd_error_log.get_missed() - assert (len(errors), len(warnings)) == (0, 0),\ - f"apache logged {len(errors)} errors and {len(warnings)} warnings: \n"\ - "{0}\n{1}\n".format("\n".join(errors), "\n".join(warnings)) - |