From 10ed872616862455750171b031c3decdc3425bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Herbel?= Date: Wed, 18 Dec 2024 21:14:09 +0100 Subject: [PATCH] Activate automation helper in integration tests Change-Id: Id8c3984cf39dff469928da29408d13e75a9f60df --- tests/integration/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 8843028f5e8..6d97bea7143 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -23,7 +23,9 @@ def get_site(request: pytest.FixtureRequest) -> Iterator[Site]: exit_msg=f"Failure in site creation using fixture '{__file__}::{request.fixturename}'!" ): yield from get_site_factory(prefix="int_").get_test_site( - name="test", auto_restart_httpd=True + name="test", + auto_restart_httpd=True, + global_settings_update={"automation_helper_active": True}, )