summaryrefslogtreecommitdiff
path: root/tests/patcher_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/patcher_test.py')
-rw-r--r--tests/patcher_test.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/patcher_test.py b/tests/patcher_test.py
index ff59400..116c225 100644
--- a/tests/patcher_test.py
+++ b/tests/patcher_test.py
@@ -229,7 +229,6 @@ def test_monkey_patch_threading():
class Tpool(ProcessBase):
TEST_TIMEOUT = 3
- @tests.skip_with_pyevent
def test_simple(self):
new_mod = """
import eventlet
@@ -247,7 +246,6 @@ tpool.killall()
assert '2' in lines[0], repr(output)
assert '3' in lines[1], repr(output)
- @tests.skip_with_pyevent
def test_unpatched_thread(self):
new_mod = """import eventlet
eventlet.monkey_patch(time=False, thread=False)
@@ -260,7 +258,6 @@ import time
output, lines = self.launch_subprocess('newmod.py')
self.assertEqual(len(lines), 2, lines)
- @tests.skip_with_pyevent
def test_patched_thread(self):
new_mod = """import eventlet
eventlet.monkey_patch(time=False, thread=True)