From 169dd120fa4eb3a66893aefb8fd64867aa9550ac Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Tue, 16 Dec 2025 13:21:59 -0800 Subject: [PATCH] fix isolated-certbot tests my interpretation of this testenv is to make sure certbot works even without any plugins (and the extra dependencies those imply) --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 56a00a5ab..fe0846ebd 100644 --- a/tox.ini +++ b/tox.ini @@ -122,7 +122,8 @@ description = Tests Certbot without any additional plugins installed deps = {[testenv:isolated-acme]deps} -e certbot[test] -commands = {[base]pytest} certbot +# we ignore apache/nginx since those tests depend on their respective extra dependencies (which are pulled in by their plugin) +commands = {[base]pytest} certbot --ignore certbot/src/certbot/_internal/apache --ignore certbot/src/certbot/_internal/nginx [testenv:isolated-{apache,cloudflare,digitalocean,dnsimple,dnsmadeeasy,gehirn,google,linode,luadns,nsone,ovh,rfc2136,route53,sakuracloud,nginx}] description = Tests the plugin without installing any other plugins