From 5a5340044ca98cbe6297668d91bccba04b102923 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Sat, 22 Jan 2022 14:06:27 +0300 Subject: bpo-46425: fix direct invocation of `asyncio` tests (#30725) --- Lib/test/test_asyncio/test_context.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Lib/test/test_asyncio/test_context.py') diff --git a/Lib/test/test_asyncio/test_context.py b/Lib/test/test_asyncio/test_context.py index 63b1eb320c..6b80721873 100644 --- a/Lib/test/test_asyncio/test_context.py +++ b/Lib/test/test_asyncio/test_context.py @@ -32,3 +32,7 @@ class DecimalContextTest(unittest.TestCase): self.assertEqual(str(r2[0]), '0.333333') self.assertEqual(str(r2[1]), '0.111111') + + +if __name__ == '__main__': + unittest.main() -- cgit v1.2.1