Skip to content

Commit f31bc7a

Browse files
committed
[4.1.0] Only Run ArrowEvalPythonExecSuite tests up to Spark 4.0, we need update ci python to 3.10
See apache/spark#51259
1 parent 9005d29 commit f31bc7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends-velox/src/test/scala/org/apache/gluten/execution/python/ArrowEvalPythonExecSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ArrowEvalPythonExecSuite extends WholeStageTransformerSuite {
3939
.set("spark.executor.cores", "1")
4040
}
4141

42-
test("arrow_udf test: without projection") {
42+
testWithMaxSparkVersion("arrow_udf test: without projection", "4.0") {
4343
lazy val base =
4444
Seq(("1", 1), ("1", 2), ("2", 1), ("2", 2), ("3", 1), ("3", 2), ("0", 1), ("3", 0))
4545
.toDF("a", "b")
@@ -59,7 +59,7 @@ class ArrowEvalPythonExecSuite extends WholeStageTransformerSuite {
5959
checkAnswer(df2, expected)
6060
}
6161

62-
test("arrow_udf test: with unrelated projection") {
62+
testWithMaxSparkVersion("arrow_udf test: with unrelated projection", "4.0") {
6363
lazy val base =
6464
Seq(("1", 1), ("1", 2), ("2", 1), ("2", 2), ("3", 1), ("3", 2), ("0", 1), ("3", 0))
6565
.toDF("a", "b")

0 commit comments

Comments
 (0)