summaryrefslogtreecommitdiff
path: root/kazoo/tests/test_gevent_handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'kazoo/tests/test_gevent_handler.py')
-rw-r--r--kazoo/tests/test_gevent_handler.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/kazoo/tests/test_gevent_handler.py b/kazoo/tests/test_gevent_handler.py
index 0745c06..fb37238 100644
--- a/kazoo/tests/test_gevent_handler.py
+++ b/kazoo/tests/test_gevent_handler.py
@@ -1,4 +1,5 @@
import unittest
+import sys
import pytest
@@ -9,6 +10,7 @@ from kazoo.testing import KazooTestCase
from kazoo.tests import test_client
+@pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows")
class TestGeventHandler(unittest.TestCase):
def setUp(self):
try:
@@ -77,6 +79,7 @@ class TestGeventHandler(unittest.TestCase):
ev.wait()
+@pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows")
class TestBasicGeventClient(KazooTestCase):
def setUp(self):
try:
@@ -165,6 +168,7 @@ class TestBasicGeventClient(KazooTestCase):
sock.close()
+@pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows")
class TestGeventClient(test_client.TestClient):
def setUp(self):
try: