mirror of
https://github.com/python/cpython.git
synced 2025-07-16 07:45:20 +00:00
Make asyncio tests run on Windows.
This commit is contained in:
parent
27b7c7ebf1
commit
5ea7f93dcd
3 changed files with 12 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue