From d7e7aa9050c5dcec6c8403c6ae93f1a1e50cd940 Mon Sep 17 00:00:00 2001 From: Xiangrui Meng Date: Mon, 25 Jan 2016 16:49:56 -0800 Subject: [PATCH] ignore StreamingKMeans test in PySpark for now --- python/pyspark/mllib/tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pyspark/mllib/tests.py b/python/pyspark/mllib/tests.py index 79ce4959c9266..25a7c29982b3b 100644 --- a/python/pyspark/mllib/tests.py +++ b/python/pyspark/mllib/tests.py @@ -1189,6 +1189,7 @@ def condition(): self._eventually(condition, catch_assertions=True) + @unittest.skip("SPARK-10086: Flaky StreamingKMeans test in PySpark") def test_trainOn_predictOn(self): """Test that prediction happens on the updated model.""" stkm = StreamingKMeans(decayFactor=0.0, k=2)