Skip to content

Commit d4262fa

Browse files
committed
[SPARK-52077][PYTHON][CONNECT][TEST] Skip ArrowUDTFParityTests in Spark Connect compatibility test
This PR proposes to skip ArrowUDTFParityTests in Spark Connect compatibility test for now. After apache#50099, the compatibility test fails https://github.com/apache/spark/actions/runs/14959668798/job/42019945629 In fact, UDTF with Arrow is still under development so we can skip the tests for now No, test-only. Will monitor the build. No. Closes apache#50856 from HyukjinKwon/SPARK-44856-followup. Authored-by: Hyukjin Kwon <gurwls223@apache.org> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org> (cherry picked from commit 9bb0409) Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
1 parent 513a032 commit d4262fa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

python/pyspark/sql/tests/connect/test_parity_udtf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17+
import os
1718
import unittest
1819

1920
from pyspark.testing.connectutils import should_test_connect
@@ -88,6 +89,10 @@ def _add_file(self, path):
8889
self.spark.addArtifacts(path, file=True)
8990

9091

92+
@unittest.skipIf(
93+
os.environ.get("SPARK_SKIP_CONNECT_COMPAT_TESTS") == "1",
94+
"Python UDTF with Arrow is still under development.",
95+
)
9196
class ArrowUDTFParityTests(UDTFArrowTestsMixin, UDTFParityTests):
9297
@classmethod
9398
def setUpClass(cls):

0 commit comments

Comments
 (0)