From 6c2e87aae659039b063e8f9054535c971d8dad0d Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Mon, 9 Dec 2024 14:23:26 +0900 Subject: [PATCH] [SPARK-50507][PYTHON][TESTS][FOLLOW-UP] Add refactored package into pure Python test ### What changes were proposed in this pull request? This PR is a followup of https://github.com/apache/spark/pull/49074 that adds refactored package into pure Python test ### Why are the changes needed? In order to fix the pure Python build https://github.com/apache/spark/actions/runs/12215379954/job/34077255570. ### 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 #49106 from HyukjinKwon/SPARK-50507-followup. Authored-by: Hyukjin Kwon Signed-off-by: Hyukjin Kwon --- python/packaging/connect/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/packaging/connect/setup.py b/python/packaging/connect/setup.py index de76d51d0cfdc..916a6da79de05 100755 --- a/python/packaging/connect/setup.py +++ b/python/packaging/connect/setup.py @@ -101,6 +101,7 @@ "pyspark.pandas.tests.connect.groupby", "pyspark.pandas.tests.connect.indexes", "pyspark.pandas.tests.connect.io", + "pyspark.pandas.tests.connect.pandas", "pyspark.pandas.tests.connect.plot", "pyspark.pandas.tests.connect.resample", "pyspark.pandas.tests.connect.reshape",