This is an automated email from the ASF dual-hosted git repository.
gurwls223 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 1e378b34676b [SPARK-50890][PYTHON][TESTS][CONNECT] Skip test_take in
Spark Connect only build
1e378b34676b is described below
commit 1e378b34676b4b2322937c5e76a914276ae1f9c1
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Mon Jan 20 09:49:03 2025 +0900
[SPARK-50890][PYTHON][TESTS][CONNECT] Skip test_take in Spark Connect only
build
### What changes were proposed in this pull request?
This PR proposes to skip test_take in Spark Connect only build.
### Why are the changes needed?
This particular test is flaky
(https://github.com/apache/spark/actions/runs/12857135589/job/35844649654) and
fails with OOM, which results in stopping all following tests. We should at
least fix this build, and run other tests.
### Does this PR introduce _any_ user-facing change?
No, test-only.
### How was this patch tested?
Will monitor the build.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #49565 from HyukjinKwon/skip-test-take.
Authored-by: Hyukjin Kwon <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
python/pyspark/pandas/tests/connect/frame/test_parity_take.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/python/pyspark/pandas/tests/connect/frame/test_parity_take.py
b/python/pyspark/pandas/tests/connect/frame/test_parity_take.py
index fe15f37ddd2d..536062fa8746 100644
--- a/python/pyspark/pandas/tests/connect/frame/test_parity_take.py
+++ b/python/pyspark/pandas/tests/connect/frame/test_parity_take.py
@@ -16,11 +16,13 @@
#
import unittest
+from pyspark import is_remote_only
from pyspark.pandas.tests.frame.test_take import FrameTakeMixin
from pyspark.testing.connectutils import ReusedConnectTestCase
from pyspark.testing.pandasutils import PandasOnSparkTestUtils
[email protected](is_remote_only(), "Flaky with OOM")
class FrameTakeParityTests(
FrameTakeMixin,
PandasOnSparkTestUtils,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]