This is an automated email from the ASF dual-hosted git repository.

ruifengz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new cd8c8746c34 [SPARK-40196][PYTHON][PS][FOLLOWUP] Skip 
SparkFunctionsTests.test_repeat
cd8c8746c34 is described below

commit cd8c8746c344fc48ba008830a0b816be05d98ca4
Author: Yikun Jiang <yikunk...@gmail.com>
AuthorDate: Fri Sep 16 15:07:49 2022 +0800

    [SPARK-40196][PYTHON][PS][FOLLOWUP] Skip SparkFunctionsTests.test_repeat
    
    ### What changes were proposed in this pull request?
    Mark `SparkFunctionsTests.test_repeat` as placeholder.
    
    ### Why are the changes needed?
    ```
      test_repeat 
(pyspark.pandas.tests.test_spark_functions.SparkFunctionsTests) ... FAIL 
(0.052s)
    
    ======================================================================
    FAIL [0.052s]: test_repeat 
(pyspark.pandas.tests.test_spark_functions.SparkFunctionsTests)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File 
"/__w/spark/spark/python/pyspark/pandas/tests/test_spark_functions.py", line 
28, in test_repeat
        self.assertTrue(spark_column_equals(SF.repeat(F.lit(1), 2), 
F.repeat(F.lit(1), 2)))
    AssertionError: False is not true
    
    ----------------------------------------------------------------------
    Ran 1 test in 8.471s
    ```
    
    According to 
https://github.com/apache/spark/pull/37888#discussion_r971408190 we'd better 
skip it first.
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    CI passed
    
    Closes #37912 from Yikun/37888.
    
    Authored-by: Yikun Jiang <yikunk...@gmail.com>
    Signed-off-by: Ruifeng Zheng <ruife...@apache.org>
---
 python/pyspark/pandas/tests/test_spark_functions.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/python/pyspark/pandas/tests/test_spark_functions.py 
b/python/pyspark/pandas/tests/test_spark_functions.py
index 4b95a8eb7d5..c18dc30240c 100644
--- a/python/pyspark/pandas/tests/test_spark_functions.py
+++ b/python/pyspark/pandas/tests/test_spark_functions.py
@@ -25,7 +25,8 @@ from pyspark.testing.pandasutils import PandasOnSparkTestCase
 
 class SparkFunctionsTests(PandasOnSparkTestCase):
     def test_repeat(self):
-        self.assertTrue(spark_column_equals(SF.repeat(F.lit(1), 2), 
F.repeat(F.lit(1), 2)))
+        # TODO: Placeholder
+        pass
 
 
 if __name__ == "__main__":


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to