Commit d099423c authored by Jason Madden's avatar Jason Madden

Fix tests on windows, where SelectSelector._select is a normal method.

parent 3d4404d2
This diff is collapsed.
...@@ -21,6 +21,9 @@ patch_all() ...@@ -21,6 +21,9 @@ patch_all()
) )
class TestSelectors(greentest.TestCase): class TestSelectors(greentest.TestCase):
@greentest.skipOnWindows(
"SelectSelector._select is a normal function on Windows"
)
def test_selectors_select_is_patched(self): def test_selectors_select_is_patched(self):
# https://github.com/gevent/gevent/issues/835 # https://github.com/gevent/gevent/issues/835
_select = selectors.SelectSelector._select _select = selectors.SelectSelector._select
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment