Skip to content

[3.10] bpo-46425: fix direct invocation of asyncio tests (GH-30725) #30782

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Lib/test/test_asyncio/test_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ async def main():

self.assertEqual(str(r2[0]), '0.333333')
self.assertEqual(str(r2[1]), '0.111111')


if __name__ == '__main__':
unittest.main()
4 changes: 4 additions & 0 deletions Lib/test/test_asyncio/test_futures2.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ async def func():
# The check for returned string is not very reliable but
# exact comparison for the whole string is even weaker.
self.assertIn('...', repr(await asyncio.wait_for(func(), timeout=10)))


if __name__ == '__main__':
unittest.main()
4 changes: 4 additions & 0 deletions Lib/test/test_asyncio/test_protocols.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,7 @@ def test_subprocess_protocol(self):
self.assertIsNone(sp.pipe_connection_lost(1, f))
self.assertIsNone(sp.process_exited())
self.assertFalse(hasattr(sp, '__dict__'))


if __name__ == '__main__':
unittest.main()
6 changes: 5 additions & 1 deletion Lib/test/test_asyncio/test_runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import unittest

from unittest import mock
from . import utils as test_utils
from test.test_asyncio import utils as test_utils


class TestPolicy(asyncio.AbstractEventLoopPolicy):
Expand Down Expand Up @@ -180,3 +180,7 @@ async def main():

self.assertIsNone(spinner.ag_frame)
self.assertFalse(spinner.ag_running)


if __name__ == '__main__':
unittest.main()
4 changes: 4 additions & 0 deletions Lib/test/test_asyncio/test_sendfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,3 +565,7 @@ class SelectEventLoopTests(SendfileTestsBase,

def create_event_loop(self):
return asyncio.SelectorEventLoop(selectors.SelectSelector())


if __name__ == '__main__':
unittest.main()
5 changes: 4 additions & 1 deletion Lib/test/test_asyncio/test_sock_lowlevel.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import socket
import time
import asyncio
import sys
import unittest
Expand Down Expand Up @@ -512,3 +511,7 @@ class SelectEventLoopTests(BaseSockTestsMixin,

def create_event_loop(self):
return asyncio.SelectorEventLoop(selectors.SelectSelector())


if __name__ == '__main__':
unittest.main()