Skip to content

Commit 14d5c67

Browse files
committed
[MINOR][PYTHON][ML][TESTS] Further skip flaky test_parity_regression
### What changes were proposed in this pull request? Further skip flaky `test_parity_regression` ### Why are the changes needed? it gets stuck sometimes https://github.com/apache/spark/actions/runs/16204789449/job/45752455040 skip it for now ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? CI ### Was this patch authored or co-authored using generative AI tooling? no Closes #51448 from zhengruifeng/further_skip_regression. Authored-by: Ruifeng Zheng <[email protected]> Signed-off-by: Ruifeng Zheng <[email protected]>
1 parent 57eccea commit 14d5c67

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

python/pyspark/ml/tests/connect/test_parity_classification.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from pyspark.testing.connectutils import ReusedConnectTestCase
2222

2323

24+
# TODO(SPARK-52764): Re-enable this test after fixing the flakiness.
2425
@unittest.skip("Disabled due to flakiness, should be enabled after fixing the issue")
2526
class ClassificationParityTests(ClassificationTestsMixin, ReusedConnectTestCase):
2627
pass

python/pyspark/ml/tests/connect/test_parity_clustering.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from pyspark.testing.connectutils import ReusedConnectTestCase
2222

2323

24+
# TODO(SPARK-52764): Re-enable this test after fixing the flakiness.
2425
@unittest.skip("Disabled due to flakiness, should be enabled after fixing the issue")
2526
class ClusteringParityTests(ClusteringTestsMixin, ReusedConnectTestCase):
2627
pass

python/pyspark/ml/tests/connect/test_parity_regression.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
from pyspark.testing.connectutils import ReusedConnectTestCase
2222

2323

24+
# TODO(SPARK-52764): Re-enable this test after fixing the flakiness.
25+
@unittest.skip("Disabled due to flakiness, should be enabled after fixing the issue")
2426
class RegressionParityTests(RegressionTestsMixin, ReusedConnectTestCase):
2527
pass
2628

0 commit comments

Comments
 (0)