This is an automated email from the ASF dual-hosted git repository. ruifengz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push: new de5fa426e23b [MINOR][PYTHON][ML][TESTS] Skip two flaky tests de5fa426e23b is described below commit de5fa426e23b84fc3c2bddeabcd2e1eda515abd5 Author: Ruifeng Zheng <ruife...@apache.org> AuthorDate: Wed Jul 9 16:23:37 2025 +0800 [MINOR][PYTHON][ML][TESTS] Skip two flaky tests ### What changes were proposed in this pull request? Skip two flaky tests ### Why are the changes needed? they occasionally time out after https://github.com/apache/spark/pull/51187 ### Does this PR introduce _any_ user-facing change? no, test-only ### How was this patch tested? ci ### Was this patch authored or co-authored using generative AI tooling? no Closes #51413 from zhengruifeng/skip_flaky_tests. Authored-by: Ruifeng Zheng <ruife...@apache.org> Signed-off-by: Ruifeng Zheng <ruife...@apache.org> --- python/pyspark/ml/tests/connect/test_parity_classification.py | 1 + python/pyspark/ml/tests/connect/test_parity_clustering.py | 1 + 2 files changed, 2 insertions(+) diff --git a/python/pyspark/ml/tests/connect/test_parity_classification.py b/python/pyspark/ml/tests/connect/test_parity_classification.py index 3c7e8ff71a2d..bc3cce7553cb 100644 --- a/python/pyspark/ml/tests/connect/test_parity_classification.py +++ b/python/pyspark/ml/tests/connect/test_parity_classification.py @@ -21,6 +21,7 @@ from pyspark.ml.tests.test_classification import ClassificationTestsMixin from pyspark.testing.connectutils import ReusedConnectTestCase +@unittest.skip("Disabled due to flakiness, should be enabled after fixing the issue") class ClassificationParityTests(ClassificationTestsMixin, ReusedConnectTestCase): pass diff --git a/python/pyspark/ml/tests/connect/test_parity_clustering.py b/python/pyspark/ml/tests/connect/test_parity_clustering.py index 99714b0d6962..00deb2b60bc2 100644 --- a/python/pyspark/ml/tests/connect/test_parity_clustering.py +++ b/python/pyspark/ml/tests/connect/test_parity_clustering.py @@ -21,6 +21,7 @@ from pyspark.ml.tests.test_clustering import ClusteringTestsMixin from pyspark.testing.connectutils import ReusedConnectTestCase +@unittest.skip("Disabled due to flakiness, should be enabled after fixing the issue") class ClusteringParityTests(ClusteringTestsMixin, ReusedConnectTestCase): pass --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org