From e85d3b6a830aba3ce9cb7f44bdbb2ca7863cdbf9 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Wed, 15 Jan 2025 09:34:20 -0800 Subject: [PATCH] set authenticator manually each call to override --standalone --- .../certbot_integration_tests/certbot_tests/test_main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py index 69b67ec09..450b86ab6 100644 --- a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py +++ b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py @@ -491,10 +491,11 @@ def test_reuse_key_allow_subset_of_names(context: IntegrationTestsContext) -> No context.certbot([ 'reconfigure', '--cert-name', certname, - '--manual-auth-hook', context.manual_dns_auth_hook + '--manual-auth-hook', context.manual_dns_auth_hook, + '-a', 'manual' # needed to override --standalone passed automatically ]) - context.certbot(['renew', '--cert-name', certname, '--force-renewal']) + context.certbot(['renew', '--cert-name', certname, '--force-renewal', '-a', 'manual']) stdout, _ = context.certbot(['certificates']) assert context.get_domain('fail-dns1') not in stdout