From 4ea0bfaae47a89b15e87c5a9453cdaf902960874 Mon Sep 17 00:00:00 2001 From: HyukjinKwon Date: Thu, 20 Aug 2020 10:22:02 +0900 Subject: [PATCH] [SPARK-31966][ML][TESTS][PYTHON] Increase the timeout for StreamingLogisticRegressionWithSGDTests.test_training_and_prediction --- python/pyspark/mllib/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyspark/mllib/tests.py b/python/pyspark/mllib/tests.py index 4c2ce137e331c..ec9497c2c05d6 100644 --- a/python/pyspark/mllib/tests.py +++ b/python/pyspark/mllib/tests.py @@ -1489,7 +1489,7 @@ def condition(): return True return "Latest errors: " + ", ".join(map(lambda x: str(x), errors)) - self._eventually(condition) + self._eventually(condition, timeout=180.0) class StreamingLinearRegressionWithTests(MLLibStreamingTestCase):