I've pushed the following patch. Someone knows the cause? = >From 5d047524215b8ca31befb367a420ef086ff623c6 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori <[email protected]> Date: Sat, 30 Jan 2016 22:00:19 +0900 Subject: [PATCH] test: disable rpc unittest with large file for now
disable the rpc unittest with large file for now because it doesn't work with eventlet 0.18 and later. Ryu doesn't have any use cases like this test but should be investigated. Signed-off-by: FUJITA Tomonori <[email protected]> --- ryu/tests/unit/lib/test_rpc.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ryu/tests/unit/lib/test_rpc.py b/ryu/tests/unit/lib/test_rpc.py index 995320b..149912a 100644 --- a/ryu/tests/unit/lib/test_rpc.py +++ b/ryu/tests/unit/lib/test_rpc.py @@ -16,7 +16,11 @@ import numbers import time -import unittest +import sys +if sys.version_info < (2, 7): + import unittest2 as unittest +else: + import unittest from nose.tools import raises import six @@ -230,6 +234,7 @@ class Test_rpc(unittest.TestCase): obj = [1, b'hoge', {b'foo': 1, 3: b'bar'}] assert c.call(b'resp', [obj]) == list(obj) + @unittest.skip("doesn't work with eventlet 0.18 and later") def test_4_call_large_binary(self): import struct -- 2.1.4 ------------------------------------------------------------------------------ Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month Monitor end-to-end web transactions and take corrective actions now Troubleshoot faster and improve end-user experience. Signup Now! http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140 _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
