From acafffc4eed5f518f3dbf153e3b77379757b8968 Mon Sep 17 00:00:00 2001 From: HyukjinKwon Date: Thu, 11 Jun 2020 13:00:33 +0900 Subject: [PATCH] Increase the timeout for StreamingLogisticRegressionWithSGDTests.test_training_and_prediction --- python/pyspark/mllib/tests/test_streaming_algorithms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyspark/mllib/tests/test_streaming_algorithms.py b/python/pyspark/mllib/tests/test_streaming_algorithms.py index f57de83bae64d..2f35e07cdf71c 100644 --- a/python/pyspark/mllib/tests/test_streaming_algorithms.py +++ b/python/pyspark/mllib/tests/test_streaming_algorithms.py @@ -327,7 +327,7 @@ def condition(): return True return "Latest errors: " + ", ".join(map(lambda x: str(x), errors)) - eventually(condition, timeout=60.0) + eventually(condition, timeout=180.0) class StreamingLinearRegressionWithTests(MLLibStreamingTestCase):