You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2020/03/15 05:13:29 UTC

[GitHub] [spark] nchammas opened a new pull request #27917: [SPARK-31153][BUILD] Cleanup several failures in lint-python

nchammas opened a new pull request #27917: [SPARK-31153][BUILD] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917
 
 
   Backport of #27910 / 0ce5519f179a8f88a688dece754596c3166528b7.
   
   ---
   
   This PR cleans up several failures -- most of them silent -- in `dev/lint-python`. I don't understand how we haven't been bitten by these yet. Perhaps we've been lucky?
   
   Fixes include:
   * Fix how we compare versions. All the version checks currently in `master` silently fail with:
   
       ```
         File "<string>", line 2
           print(LooseVersion("""2.3.1""") >= LooseVersion("""2.4.0"""))
           ^
       IndentationError: unexpected indent
       ```
       Another problem is that `distutils.version` is undocumented and unsupported.
   * Fix some basic bugs. e.g. We have an incorrect reference to `$PYDOCSTYLEBUILD`, which doesn't exist, which was causing the doc style test to silently fail with:
   
       ```
       ./dev/lint-python: line 193: --version: command not found
       ```
   * Stop suppressing error output! It's hiding problems and serves no purpose here.
   
   `lint-python` is part of our CI build and is currently doing any combination of the following: silently failing; incorrectly skipping tests; incorrectly downloading libraries when a suitable library is already available.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599175887
 
 
   **[Test build #119810 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119810/testReport)** for PR 27917 at commit [`462537d`](https://github.com/apache/spark/commit/462537d0523887b65625512e8b8ae5ac07b03625).
    * This patch **fails due to an unknown error code, -9**.
    * This patch merges cleanly.
    * This patch adds no public classes.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169233
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599177876
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24544/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599175956
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] nchammas commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169553
 
 
   > assuming it's also manually tested (e.g., version checking when it's not installed)
   
   Can confirm I tested it manually with `set -x` enabled and inspected the output carefully.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169233
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599188954
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119814/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599175959
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119810/
   Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599175959
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119810/
   Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599177760
 
 
   **[Test build #119814 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119814/testReport)** for PR 27917 at commit [`462537d`](https://github.com/apache/spark/commit/462537d0523887b65625512e8b8ae5ac07b03625).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169636
 
 
   **[Test build #119810 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119810/testReport)** for PR 27917 at commit [`462537d`](https://github.com/apache/spark/commit/462537d0523887b65625512e8b8ae5ac07b03625).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599177876
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24544/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169636
 
 
   **[Test build #119810 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119810/testReport)** for PR 27917 at commit [`462537d`](https://github.com/apache/spark/commit/462537d0523887b65625512e8b8ae5ac07b03625).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169387
 
 
   @nchammas sure, looks good! one nit in the PR title I fixed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169237
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24540/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169237
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24540/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] nchammas commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599169322
 
 
   cc @HyukjinKwon. It's my first time backporting a change. Did I do it right? [Contributing guide](https://spark.apache.org/contributing.html) doesn't say much about how to do it.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599188954
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119814/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon closed pull request #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
HyukjinKwon closed pull request #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917
 
 
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599188952
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599293637
 
 
   Merged to branch-3.0.
   
   Thank you @nchammas for working on this.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599177760
 
 
   **[Test build #119814 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119814/testReport)** for PR 27917 at commit [`462537d`](https://github.com/apache/spark/commit/462537d0523887b65625512e8b8ae5ac07b03625).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599188952
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] nchammas commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599177589
 
 
   Retest this please.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599188778
 
 
   **[Test build #119814 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119814/testReport)** for PR 27917 at commit [`462537d`](https://github.com/apache/spark/commit/462537d0523887b65625512e8b8ae5ac07b03625).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599175956
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599177875
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python
URL: https://github.com/apache/spark/pull/27917#issuecomment-599177875
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org