From 606a325cfa0a9bed57b3cefe7d539224ef04722e Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Wed, 3 Jun 2015 15:29:33 -0700 Subject: [PATCH] Change sleep timer to be longer for test_rpc_calculator Hopefully this fixes timing issues with the test on travisci --- test/test_rpc_calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_rpc_calculator.py b/test/test_rpc_calculator.py index 1d7777a..ecf73ec 100644 --- a/test/test_rpc_calculator.py +++ b/test/test_rpc_calculator.py @@ -21,7 +21,7 @@ def test_calculator(): def run_subprocesses(address): server = subprocess.Popen([examples_dir + '/calculator_server.py', address]) - time.sleep(.1) # Give the server some small amount of time to start listening + time.sleep(2) # Give the server some small amount of time to start listening client = subprocess.Popen([examples_dir + '/calculator_client.py', address]) ret = client.wait()