1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

AZURE_DNS: Remove artificial delays (#943)

* AZURE_DNS: Remove artificial delays
* CloudflareAPI is too slow for all tests
This commit is contained in:
Tom Limoncelli
2020-11-13 12:21:13 -05:00
committed by GitHub
parent d759b7b4da
commit 184131b1e3
2 changed files with 2 additions and 7 deletions

View File

@ -744,7 +744,8 @@ func makeTests(t *testing.T) []*TestGroup {
// - Gandi: page size is 100, therefore we test with 99, 100, and 101
// - NS1: free acct only allows 50 records, therefore we skip
// - DIGITALOCEAN: page size is 100 (default: 20)
not("NS1"),
// - CLOUDFLAREAPI: Infinite pagesize but due to slow speed, skipping.
not("NS1", "CLOUDFLAREAPI"),
tc("99 records", manyA("rec%04d", "1.2.3.4", 99)...),
tc("100 records", manyA("rec%04d", "1.2.3.4", 100)...),
tc("101 records", manyA("rec%04d", "1.2.3.4", 101)...),