From df8e1fb4e388e18430a9be8c6ceeb03c330f166c Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 7 Jan 2019 23:55:57 +0100 Subject: [PATCH] bpo-32710: test_asyncio: test_sendfile reset policy (GH-11461) test_asyncio/test_sendfile.py now resets the event loop policy using tearDownModule() as done in other tests, to prevent a warning when running tests on Windows. --- Lib/test/test_asyncio/test_sendfile.py | 4 ++++ .../next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst diff --git a/Lib/test/test_asyncio/test_sendfile.py b/Lib/test/test_asyncio/test_sendfile.py index 26e44a3348a5..f148fe27e6ad 100644 --- a/Lib/test/test_asyncio/test_sendfile.py +++ b/Lib/test/test_asyncio/test_sendfile.py @@ -18,6 +18,10 @@ except ImportError: ssl = None +def tearDownModule(): + asyncio.set_event_loop_policy(None) + + class MySendfileProto(asyncio.Protocol): def __init__(self, loop=None, close_after=0): diff --git a/Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst b/Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst new file mode 100644 index 000000000000..dd602a94c349 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-01-07-23-34-41.bpo-32710.Hzo1b8.rst @@ -0,0 +1,3 @@ +``test_asyncio/test_sendfile.py`` now resets the event loop policy using +:func:`tearDownModule` as done in other tests, to prevent a warning when +running tests on Windows. -- 2.47.3