Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/20338
  
    This doesn't actually run the Python lint in Jenkins build though because 
there's no change on the files with `.py`. Mind double checking and fixing:
    
    ```diff
    diff --git a/dev/run-tests.py b/dev/run-tests.py
    index 7e6f7ff0603..6fac324972e 100755
    --- a/dev/run-tests.py
    +++ b/dev/run-tests.py
    @@ -576,7 +576,10 @@ def main():
                                     for f in changed_files):
             # run_java_style_checks()
             pass
    -    if not changed_files or any(f.endswith(".py") for f in changed_files):
    +    if not changed_files or any(f.endswith("lint-python")
    +                                or f.endswith("tox.ini")
    +                                or f.endswith(".py")
    +                                for f in changed_files):
             run_python_style_checks()
         if not changed_files or any(f.endswith(".R") for f in changed_files):
             run_sparkr_style_checks()
    ```
    
    too?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to