summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-01-15 07:26:49 (GMT)
committerGitHub <noreply@github.com>2024-01-15 07:26:49 (GMT)
commitf8a79109d0c4f408d34d51861cc0a7c447f46d70 (patch)
tree89819151656503c7af5bdc4962abb805e08cb446
parent1709020e8ebaf9bf1bc9ee14d56173c860613931 (diff)
downloadcpython-f8a79109d0c4f408d34d51861cc0a7c447f46d70.zip
cpython-f8a79109d0c4f408d34d51861cc0a7c447f46d70.tar.gz
cpython-f8a79109d0c4f408d34d51861cc0a7c447f46d70.tar.bz2
gh-109862: Fix test_create_subprocess_with_pidfd when it was run separately (GH-113991)
-rw-r--r--Lib/test/test_asyncio/test_subprocess.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py
index 179c8cb..859d293 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -975,8 +975,13 @@ if sys.platform != 'win32':
async def main():
# asyncio.Runner did not call asyncio.set_event_loop()
- with self.assertRaises(RuntimeError):
- asyncio.get_event_loop_policy().get_event_loop()
+ with warnings.catch_warnings():
+ warnings.simplefilter('error', DeprecationWarning)
+ # get_event_loop() raises DeprecationWarning if
+ # set_event_loop() was never called and RuntimeError if
+ # it was called at least once.
+ with self.assertRaises((RuntimeError, DeprecationWarning)):
+ asyncio.get_event_loop_policy().get_event_loop()
return await asyncio.to_thread(asyncio.run, in_thread())
with self.assertWarns(DeprecationWarning):
asyncio.set_child_watcher(asyncio.PidfdChildWatcher())