aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/mllib
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2016-01-25 22:53:34 -0800
committerXiangrui Meng <meng@databricks.com>2016-01-25 22:53:34 -0800
commit27c910f7f29087d1ac216d4933d641d6515fd6ad (patch)
tree72c8b7bacf9a230989aeb2a6d6d8d78666d71f08 /python/pyspark/mllib
parentae47ba718a280fc12720a71b981c38dbe647f35b (diff)
downloadspark-27c910f7f29087d1ac216d4933d641d6515fd6ad.tar.gz
spark-27c910f7f29087d1ac216d4933d641d6515fd6ad.tar.bz2
spark-27c910f7f29087d1ac216d4933d641d6515fd6ad.zip
[SPARK-10086][MLLIB][STREAMING][PYSPARK] ignore StreamingKMeans test in PySpark for now
I saw several failures from recent PR builds, e.g., https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/50015/consoleFull. This PR marks the test as ignored and we will fix the flakyness in SPARK-10086. gliptak Do you know why the test failure didn't show up in the Jenkins "Test Result"? cc: jkbradley Author: Xiangrui Meng <meng@databricks.com> Closes #10909 from mengxr/SPARK-10086.
Diffstat (limited to 'python/pyspark/mllib')
-rw-r--r--python/pyspark/mllib/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/pyspark/mllib/tests.py b/python/pyspark/mllib/tests.py
index 79ce4959c9..25a7c29982 100644
--- a/python/pyspark/mllib/tests.py
+++ b/python/pyspark/mllib/tests.py
@@ -1189,6 +1189,7 @@ class StreamingKMeansTest(MLLibStreamingTestCase):
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)