From 5ea7f93dcdd3d78082a03310e847d4e646ff4fbb Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 17 Oct 2013 14:23:17 -0700 Subject: Make asyncio tests run on Windows. --- Lib/test/test_asyncio/test_unix_events.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Lib/test/test_asyncio/test_unix_events.py') diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py index ea67862431..6dbd47f63b 100644 --- a/Lib/test/test_asyncio/test_unix_events.py +++ b/Lib/test/test_asyncio/test_unix_events.py @@ -10,6 +10,9 @@ import sys import unittest import unittest.mock +if sys.platform == 'win32': + raise unittest.SkipTest('UNIX only') + from asyncio import events from asyncio import futures -- cgit v1.2.1