summaryrefslogtreecommitdiff
path: root/tests/test_xfr.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2023-03-12 10:03:11 -0700
committerBob Halley <halley@dnspython.org>2023-03-12 10:03:11 -0700
commit504d810ca740310574217ed8f9296be24f00debf (patch)
tree2c597ce8aa1f236a89770f5175283ecfdae9dc40 /tests/test_xfr.py
parente24a50c7105299b5d015c253fc0fbf7243877cdf (diff)
downloaddnspython-504d810ca740310574217ed8f9296be24f00debf.tar.gz
Remove curio support.
Diffstat (limited to 'tests/test_xfr.py')
-rw-r--r--tests/test_xfr.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/test_xfr.py b/tests/test_xfr.py
index 4893532..458cdf9 100644
--- a/tests/test_xfr.py
+++ b/tests/test_xfr.py
@@ -709,24 +709,6 @@ try:
except ImportError:
pass
-try:
- import curio
-
- @pytest.mark.skipif(
- (not _nanonameserver_available) or sys.platform == "win32",
- reason="requires nanonameserver or is windows",
- )
- def test_curio_inbound_xfr():
- dns.asyncbackend.set_default_backend("curio")
-
- async def run():
- await async_inbound_xfr()
-
- curio.run(run)
-
-except ImportError:
- pass
-
class UDPXFRNanoNameserver(Server):
def __init__(self):