From cb1fe98f767676ebe8964345d9872325f19f9164 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 20 Oct 2013 21:02:53 +0200 Subject: Make various asyncio test files individually runnable --- Lib/test/test_asyncio/test_windows_utils.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Lib/test/test_asyncio/test_windows_utils.py') diff --git a/Lib/test/test_asyncio/test_windows_utils.py b/Lib/test/test_asyncio/test_windows_utils.py index 3b6b036893..f721d3187b 100644 --- a/Lib/test/test_asyncio/test_windows_utils.py +++ b/Lib/test/test_asyncio/test_windows_utils.py @@ -138,3 +138,7 @@ class PopenTests(unittest.TestCase): # allow for partial reads... self.assertTrue(msg.upper().rstrip().startswith(out)) self.assertTrue(b"stderr".startswith(err)) + + +if __name__ == '__main__': + unittest.main() -- cgit v1.2.1