Skip to content

Commit 6562e07

Browse files
committed
ARROW-18390: [CI][Python] Remove testing missing module from spark master
1 parent 945bcf6 commit 6562e07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/scripts/integration_spark.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,15 @@ pushd ${spark_dir}
7676
"pyspark.sql.tests.test_arrow"
7777
"pyspark.sql.tests.test_pandas_map"
7878
"pyspark.sql.tests.test_pandas_cogrouped_map"
79-
"pyspark.sql.tests.test_pandas_grouped_map"
8079
"pyspark.sql.tests.test_pandas_udf"
8180
"pyspark.sql.tests.test_pandas_udf_scalar"
8281
"pyspark.sql.tests.test_pandas_udf_grouped_agg"
8382
"pyspark.sql.tests.test_pandas_udf_window")
8483

84+
if [ "${SPARK_VERSION}" != "master" ]; then
85+
spark_python_tests+=("pyspark.sql.tests.test_pandas_grouped_map")
86+
fi
87+
8588
(echo "Testing PySpark:"; IFS=$'\n'; echo "${spark_python_tests[*]}")
8689
python/run-tests --testnames "$(IFS=,; echo "${spark_python_tests[*]}")" --python-executables python
8790
popd

0 commit comments

Comments
 (0)