summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-08-22 12:55:53 -0700
committerBob Halley <halley@dnspython.org>2020-08-22 12:55:53 -0700
commit030a9f8f87e862c738c858facabf2d0c4d44e440 (patch)
tree1905870f8dee0ca2f4ce8ab0db89e23fa34530a1 /tests
parentd1029c5e10f12b2e519ad55cd40c7beaa6805ae1 (diff)
downloaddnspython-030a9f8f87e862c738c858facabf2d0c4d44e440.tar.gz
disable 9.9.9.9 in tests temporarily
Diffstat (limited to 'tests')
-rw-r--r--tests/test_doh.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test_doh.py b/tests/test_doh.py
index 4c72c24..8008596 100644
--- a/tests/test_doh.py
+++ b/tests/test_doh.py
@@ -33,7 +33,11 @@ resolver_v6_addresses = []
try:
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as s:
s.connect(('8.8.8.8', 53))
- resolver_v4_addresses = ['1.1.1.1', '8.8.8.8', '9.9.9.9']
+ resolver_v4_addresses = [
+ '1.1.1.1',
+ '8.8.8.8',
+ # '9.9.9.9',
+ ]
except Exception:
pass
try:
@@ -43,7 +47,7 @@ try:
'2606:4700:4700::1111',
# Google says 404
# '2001:4860:4860::8888',
- '2620:fe::11'
+ # '2620:fe::fe',
]
except Exception:
pass