Skip to content

Commit

Permalink
[SPARK-50913][PYTHON][TESTS] Skip flaky EvaluationTestsOnConnect.test…
Browse files Browse the repository at this point in the history
…_binary_classifier_evaluator

### What changes were proposed in this pull request?
Skip flaky EvaluationTestsOnConnect.test_binary_classifier_evaluator

### Why are the changes needed?
the corresponding module `pyspark.ml.connect` has been drepecated and this test is flaky

### 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 #49595 from zhengruifeng/skip_test_binary_classifier_evaluator.

Authored-by: Ruifeng Zheng <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
  • Loading branch information
zhengruifeng authored and HyukjinKwon committed Jan 22, 2025
1 parent 09cb059 commit 48aa25a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/pyspark/ml/tests/connect/test_connect_evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ def setUp(self) -> None:
def tearDown(self) -> None:
self.spark.stop()

@unittest.skip("SPARK-50913: Flaky with RetriesExceeded")
def test_binary_classifier_evaluator(self):
self._test_binary_classifier_evaluator()


if __name__ == "__main__":
from pyspark.ml.tests.connect.test_connect_evaluation import * # noqa: F401,F403
Expand Down

0 comments on commit 48aa25a

Please sign in to comment.