diff options
| author | Guido van Rossum <guido@dropbox.com> | 2013-10-17 14:23:17 -0700 |
|---|---|---|
| committer | Guido van Rossum <guido@dropbox.com> | 2013-10-17 14:23:17 -0700 |
| commit | 5ea7f93dcdd3d78082a03310e847d4e646ff4fbb (patch) | |
| tree | ebf4014ca1eca6bea984a481ed21b1d24981c873 /Lib/test/test_asyncio/test_unix_events.py | |
| parent | 27b7c7ebf1039e96cac41b6330cf16b5632d9e49 (diff) | |
| download | cpython-git-5ea7f93dcdd3d78082a03310e847d4e646ff4fbb.tar.gz | |
Make asyncio tests run on Windows.
Diffstat (limited to 'Lib/test/test_asyncio/test_unix_events.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_unix_events.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
