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

gurwls223 pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new e31fe6c  [SPARK-33189][FOLLOWUP][3.0] Fix syntax error in 
python/run-tests.py
e31fe6c is described below

commit e31fe6c97c30237c6c7a28603ed884a13c9e2dd5
Author: Dongjoon Hyun <dh...@apple.com>
AuthorDate: Thu Oct 22 10:00:18 2020 +0900

    [SPARK-33189][FOLLOWUP][3.0] Fix syntax error in python/run-tests.py
    
    ### What changes were proposed in this pull request?
    
    This PR aims to fix syntax error.
    
    ### Why are the changes needed?
    
    ```
    ========================================================================
    Running Python style checks
    ========================================================================
    pycodestyle checks failed.
    *** Error compiling './python/run-tests.py'...
      File "./python/run-tests.py", line 80
        'PYARROW_IGNORE_TIMEZONE': '1',
                                ^
    SyntaxError: invalid syntax
    ```
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Pass the Jenkins.
    
    Closes #30125 from dongjoon-hyun/SPARK-33189-2.
    
    Authored-by: Dongjoon Hyun <dh...@apple.com>
    Signed-off-by: HyukjinKwon <gurwls...@apache.org>
---
 python/run-tests.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/python/run-tests.py b/python/run-tests.py
index a647f13..89df1a3 100755
--- a/python/run-tests.py
+++ b/python/run-tests.py
@@ -75,9 +75,9 @@ def run_individual_python_test(target_dir, test_name, 
pyspark_python):
         'SPARK_PREPEND_CLASSES': '1',
         'PYSPARK_PYTHON': which(pyspark_python),
         'PYSPARK_DRIVER_PYTHON': which(pyspark_python),
-        'PYSPARK_ROW_FIELD_SORTING_ENABLED': 'true'
+        'PYSPARK_ROW_FIELD_SORTING_ENABLED': 'true',
         # Preserve legacy nested timezone behavior for pyarrow>=2, remove 
after SPARK-32285
-        'PYARROW_IGNORE_TIMEZONE': '1',
+        'PYARROW_IGNORE_TIMEZONE': '1'
     })
 
     # Create a unique temp directory under 'target/' for each run. The TMPDIR 
variable is


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

Reply via email to