ci: ignore boring warning 'Could not identify correctly the dns zone for domain sub.domain.tld'

This commit is contained in:
Alexandre Aubin 2024-08-08 19:24:16 +02:00
parent 94594e5a3c
commit d639e1c426

View file

@ -433,7 +433,7 @@ def _get_dns_zone_for_domain(domain):
zone = parent_list[-1]
# Adding this otherwise the CI is flooding about those ...
if domain not in ["example.tld", "sub.example.tld", "domain.tld", "domain_a.dev", "domain_b.dev"]:
if domain not in ["example.tld", "sub.example.tld", "domain.tld", "sub.domain.tld", "domain_a.dev", "domain_b.dev"]:
logger.warning(
f"Could not identify correctly the dns zone for domain {domain}, returning {zone}"
)