From 61050827155bdef4813510eb041ebe7bbc1eb58c Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Fri, 25 Jul 2025 09:46:59 -0400 Subject: [PATCH] TESTING: Exempt 4 providers from NS_only_APEX test (#3687) --- integrationTest/integration_test.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go index 5413ec713..f1fae8910 100644 --- a/integrationTest/integration_test.go +++ b/integrationTest/integration_test.go @@ -403,9 +403,13 @@ func makeTests() []*TestGroup { testgroup("NS only APEX", not( - "DNSIMPLE", // Does not support NS records nor subdomains. - "EXOSCALE", // Not supported. - "NETCUP", // NS records not currently supported. + "DNSIMPLE", // Does not support NS records nor subdomains. + "EXOSCALE", // Not supported. + "GANDI_V5", // "Gandi does not support changing apex NS records. Ignoring ns1.foo.com." + "NAMEDOTCOM", // "Ignores @ for NS records" + "NETCUP", // NS records not currently supported. + "SAKURACLOUD", // Silently ignores requests to remove NS at @. + "TRANSIP", // "it is not allowed to have an NS for an @ record" ), tc("Single NS at apex", ns("@", "ns1.foo.com.")), tc("Dual NS at apex", ns("@", "ns2.foo.com."), ns("@", "ns1.foo.com.")),