From 6891f2c0ac8ccf1b77be876abdf03afed190c500 Mon Sep 17 00:00:00 2001 From: Ruifeng Zheng Date: Wed, 2 Aug 2023 09:39:10 +0800 Subject: [PATCH] [SPARK-42497][FOLLOWUPS][TESTS] Add missing UTs to `modules.py` ### What changes were proposed in this pull request? add missing UTs ### Why are the changes needed? the two UTs were missing in https://github.com/apache/spark/pull/40525 ### Does this PR introduce _any_ user-facing change? no. test-only ### How was this patch tested? updated CI Closes #42262 from zhengruifeng/ps_test_ewm. Authored-by: Ruifeng Zheng Signed-off-by: Ruifeng Zheng --- dev/sparktestsupport/modules.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py index 1caf24383c74c..9e45e0facefc1 100644 --- a/dev/sparktestsupport/modules.py +++ b/dev/sparktestsupport/modules.py @@ -703,6 +703,7 @@ def __hash__(self): "pyspark.pandas.tests.test_default_index", "pyspark.pandas.tests.test_expanding", "pyspark.pandas.tests.test_extension", + "pyspark.pandas.tests.test_ewm", "pyspark.pandas.tests.test_frame_spark", "pyspark.pandas.tests.test_generic_functions", "pyspark.pandas.tests.test_indexops_spark", @@ -928,6 +929,7 @@ def __hash__(self): "pyspark.pandas.tests.connect.test_parity_default_index", "pyspark.pandas.tests.connect.test_parity_expanding", "pyspark.pandas.tests.connect.test_parity_extension", + "pyspark.pandas.tests.connect.test_parity_ewm", "pyspark.pandas.tests.connect.test_parity_frame_spark", "pyspark.pandas.tests.connect.test_parity_generic_functions", "pyspark.pandas.tests.connect.test_parity_indexops_spark",