From 5bc7e88083d7dbd79ebe129d62451ff63a03b74c Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Thu, 1 Oct 2009 18:44:34 -0700 Subject: [PATCH] This test_wait_error is bothersome, it fails only when the host is under CPU load. Disabling for now, will fix/remove later. --- tests/test__proc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test__proc.py b/tests/test__proc.py index 2541858..4b7269c 100644 --- a/tests/test__proc.py +++ b/tests/test__proc.py @@ -23,7 +23,7 @@ import sys import unittest from eventlet.api import sleep, with_timeout from eventlet import api, proc, coros -from tests import LimitedTestCase +from tests import LimitedTestCase, skipped DELAY = 0.01 @@ -289,6 +289,8 @@ class TestStuff(unittest.TestCase): self.assertEqual(e.wait(), 1) self.assertEqual([proc.waitall([X]) for X in [x, y, z]], [[1], [2], [3]]) + # this test is timing-sensitive + @skipped def test_wait_error(self): def x(): sleep(DELAY)