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/07/16 14:58:35 UTC

[GitHub] [spark] gengliangwang opened a new pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

gengliangwang opened a new pull request #29133:
URL: https://github.com/apache/spark/pull/29133


   <!--
   Thanks for sending a pull request!  Here are some tips for you:
     1. If this is your first time, please read our contributor guidelines: https://spark.apache.org/contributing.html
     2. Ensure you have added or run the appropriate tests for your PR: https://spark.apache.org/developer-tools.html
     3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][SPARK-XXXX] Your PR title ...'.
     4. Be sure to keep the PR description updated to reflect all changes.
     5. Please write your PR title to summarize what this PR proposes.
     6. If possible, provide a concise example to reproduce the issue for a faster review.
     7. If you want to add a new configuration, please read the guideline first for naming configurations in
        'core/src/main/scala/org/apache/spark/internal/config/ConfigEntry.scala'.
   -->
   
   ### What changes were proposed in this pull request?
   <!--
   Please clarify what changes you are proposing. The purpose of this section is to outline the changes and how this PR fixes the issue. 
   If possible, please consider writing useful notes for better and faster reviews in your PR. See the examples below.
     1. If you refactor some codes with changing classes, showing the class hierarchy will help reviewers.
     2. If you fix some SQL features, you can provide some references of other DBMSes.
     3. If there is design documentation, please add the link.
     4. If there is a discussion in the mailing list, please add the link.
   -->
   
   
   ### Why are the changes needed?
   <!--
   Please clarify why the changes are needed. For instance,
     1. If you propose a new API, clarify the use case for a new API.
     2. If you fix a bug, you can clarify why it is a bug.
   -->
   
   
   ### Does this PR introduce _any_ user-facing change?
   <!--
   Note that it means *any* user-facing change including all aspects such as the documentation fix.
   If yes, please clarify the previous behavior and the change this PR proposes - provide the console output, description and/or an example to show the behavior difference if possible.
   If possible, please also clarify if this is a user-facing change compared to the released Spark versions or within the unreleased branches such as master.
   If no, write 'No'.
   -->
   
   
   ### How was this patch tested?
   <!--
   If tests were added, say they were added here. Please make sure to add some test cases that check the changes thoroughly including negative and positive cases if possible.
   If it was tested in a way different from regular unit tests, please clarify how you tested step by step, ideally copy and paste-able, so that other reviewers can test and check, and descendants can verify in the future.
   If tests were not added, please describe why they were not added and/or why it was difficult to add.
   -->
   


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660048861


   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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660048381


   **[Test build #126044 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/126044/testReport)** for PR 29133 at commit [`2d39b8e`](https://github.com/apache/spark/commit/2d39b8e366573f8388aa49d77c9d100ccd94bcb1).
    * This patch **fails PySpark pip packaging 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



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


[GitHub] [spark] gengliangwang commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
gengliangwang commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456587015



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       @dongjoon-hyun Sure, I have updated the pr description.




----------------------------------------------------------------
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



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


[GitHub] [spark] gengliangwang commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
gengliangwang commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660438805


   @viirya I have updated the PR description.


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659470336


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/125982/
   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



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


[GitHub] [spark] gengliangwang commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
gengliangwang commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456297892



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       Here we drop all the following events:
   ```
   N - drop TestStarting events
   C - drop TestSucceeded events
   X - drop TestIgnored events
   E - drop TestPending events
   H - drop SuiteStarting events
   L - drop SuiteCompleted events
   O - drop InfoProvided events
   P - drop ScopeOpened events
   Q - drop ScopeClosed events
   R - drop ScopePending events
   M - drop MarkupProvided events
   ```
   and enable the following two mode:
   ```
   D - show all durations
   F - show full stack traces
   ```




----------------------------------------------------------------
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



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


[GitHub] [spark] dongjoon-hyun commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456254721



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       Also, could you add the link into the comment at below line 1030 because this is non-trivial?




----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659617046






----------------------------------------------------------------
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



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


[GitHub] [spark] HyukjinKwon commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660569838


   @dongjoon-hyun, I am debugging the flakiness at https://github.com/apache/spark/pull/29117 to make a complete fix. I think it was caused by my recent fixes and Jenkins environment differences vs Github Actions. I will be able to fix at least in the next week.


----------------------------------------------------------------
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



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


[GitHub] [spark] viirya commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
viirya commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660570738


   Looks okay to me. We can keep improving 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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659469298


   **[Test build #125982 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125982/testReport)** for PR 29133 at commit [`3bcfbb1`](https://github.com/apache/spark/commit/3bcfbb144bb10bc579cb96d01b21455f660bca50).


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659631399


   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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659474925


   **[Test build #125983 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125983/testReport)** for PR 29133 at commit [`60db1af`](https://github.com/apache/spark/commit/60db1af53ab3d8a6c20012755c3b749d78007baa).
    * This patch **fails Scala style 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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659470323






----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659616063


   **[Test build #125989 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125989/testReport)** for PR 29133 at commit [`663e5a7`](https://github.com/apache/spark/commit/663e5a74995445d4b85984faa5e502258b3c1aa3).
    * 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



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


[GitHub] [spark] dongjoon-hyun commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456519069



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       Could you put that into the PR description, please? PR description will become a permanent commit log . So, it will help other people to understand your decision. Thanks, @gengliangwang .




----------------------------------------------------------------
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



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


[GitHub] [spark] HyukjinKwon commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-663344407


   Thank you @gengliangwang for investigating 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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659517695






----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659474111


   **[Test build #125983 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125983/testReport)** for PR 29133 at commit [`60db1af`](https://github.com/apache/spark/commit/60db1af53ab3d8a6c20012755c3b749d78007baa).


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660048869


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/126044/
   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



---------------------------------------------------------------------
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 pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659516918


   **[Test build #125989 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125989/testReport)** for PR 29133 at commit [`663e5a7`](https://github.com/apache/spark/commit/663e5a74995445d4b85984faa5e502258b3c1aa3).


----------------------------------------------------------------
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



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


[GitHub] [spark] HyukjinKwon commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-663339240


   @gengliangwang, seems this hides the test results from JUnit tests. Can you take a look and see if it shows JUnit test failures as well? If you're busy for something else, we can revert it for now as well.


----------------------------------------------------------------
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



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


[GitHub] [spark] gengliangwang edited a comment on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
gengliangwang edited a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659821378


   @HyukjinKwon I have updated the PR description.
   Meanwhile, I created a PR on my repo to see what the test failure log will look like: https://github.com/gengliangwang/spark/pull/6
   
   Here is an example of failed log output: https://github.com/gengliangwang/spark/pull/6/checks?check_run_id=880362871
   


----------------------------------------------------------------
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



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


[GitHub] [spark] gengliangwang commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
gengliangwang commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659821378


   @HyukjinKwon I have updated the PR description.
   Meanwhile, I created a PR on my repo to see what the test failure log will look like: https://github.com/gengliangwang/spark/pull/6


----------------------------------------------------------------
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



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


[GitHub] [spark] gengliangwang commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
gengliangwang commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-663341602


   @HyukjinKwon thanks for the reminder! I will see if there is any quick fix. If not, I will revert this very soon.


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659470056






----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659630497


   **[Test build #125991 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125991/testReport)** for PR 29133 at commit [`3590262`](https://github.com/apache/spark/commit/3590262dda8b3217b0283251223f8763cc747c0f).
    * This patch **fails Spark unit 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



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


[GitHub] [spark] dongjoon-hyun commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456254309



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       It seems that you explicitly enabled all available standard error options except `W` and `U`. If then, could you describe the reason why you choose some and exclude those two, please?
   ```
   W - without color
   U - unformatted mode
   ```




----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659957643






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659517695






----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659470283


   **[Test build #125982 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125982/testReport)** for PR 29133 at commit [`3bcfbb1`](https://github.com/apache/spark/commit/3bcfbb144bb10bc579cb96d01b21455f660bca50).
    * This patch **fails Scala style 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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659961178


   **[Test build #126044 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/126044/testReport)** for PR 29133 at commit [`2d39b8e`](https://github.com/apache/spark/commit/2d39b8e366573f8388aa49d77c9d100ccd94bcb1).


----------------------------------------------------------------
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



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


[GitHub] [spark] viirya commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
viirya commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660429568


   I saw the screenshot of after this change. Can we also add one screenshot of before this change too?


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659631399






----------------------------------------------------------------
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



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


[GitHub] [spark] gengliangwang commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
gengliangwang commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456298275



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       The following two modes will make the readability worse
   ```
   W - without color
   U - unformatted mode
   ``` 




----------------------------------------------------------------
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



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


[GitHub] [spark] HyukjinKwon commented on pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659812335


   @gengliangwang, it would be easier to review if we have before/after examples of the logs :-) cc @viirya as well


----------------------------------------------------------------
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



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


[GitHub] [spark] dongjoon-hyun commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660175769


   "This patch fails PySpark pip packaging tests." flakiness happens frequently in these day although I don't know the root cause.


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [WIP][SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659526442






----------------------------------------------------------------
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



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


[GitHub] [spark] HyukjinKwon commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660577416


   I filed new JIRA for test reporter (SPARK-32357)..  let's see how it goes.
   
   Merged to master.


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659474111


   **[Test build #125983 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125983/testReport)** for PR 29133 at commit [`60db1af`](https://github.com/apache/spark/commit/60db1af53ab3d8a6c20012755c3b749d78007baa).


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659474944






----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659957643






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659470056






----------------------------------------------------------------
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



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


[GitHub] [spark] gengliangwang commented on a change in pull request #29133: [WIP][SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
gengliangwang commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r455923173



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       Check https://www.scalatest.org/user_guide/using_the_runner for the options here.




----------------------------------------------------------------
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



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


[GitHub] [spark] dongjoon-hyun commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456519069



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       Could you put that explanation into the PR description, please? PR description will become a permanent commit log . So, it will help other people to understand your decision. Thanks, @gengliangwang .




----------------------------------------------------------------
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



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


[GitHub] [spark] dongjoon-hyun commented on a change in pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on a change in pull request #29133:
URL: https://github.com/apache/spark/pull/29133#discussion_r456254309



##########
File path: project/SparkBuild.scala
##########
@@ -1027,6 +1027,11 @@ object TestSettings {
       }.getOrElse(Nil): _*),
     // Show full stack trace and duration in test cases.
     testOptions in Test += Tests.Argument("-oDF"),
+    // Show only the failed test cases in github action to make the log more readable.
+    testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
+      sys.env.get("GITHUB_ACTIONS").map { _ =>
+        Seq("-eNCXEHLOPQMDSF")

Review comment:
       It seems that you explicitly enabled all available options except `W` and `U`. If then, could you describe the reason why you choose some and exclude those two, please?
   ```
   W - without color
   U - unformatted mode
   ```




----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659474944






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659474957


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/125983/
   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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659469298


   **[Test build #125982 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125982/testReport)** for PR 29133 at commit [`3bcfbb1`](https://github.com/apache/spark/commit/3bcfbb144bb10bc579cb96d01b21455f660bca50).


----------------------------------------------------------------
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



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


[GitHub] [spark] HyukjinKwon commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660570181


   I am okay to try this out for now until we have a way to report the test results but I'll leave it to @dongjoon-hyun and @viirya.


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-660048861






----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659475032






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659530106


   **[Test build #125991 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125991/testReport)** for PR 29133 at commit [`3590262`](https://github.com/apache/spark/commit/3590262dda8b3217b0283251223f8763cc747c0f).


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [WIP][SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659526442






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659470323


   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



---------------------------------------------------------------------
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 #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon closed pull request #29133:
URL: https://github.com/apache/spark/pull/29133


   


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659631409


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/125991/
   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



---------------------------------------------------------------------
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 pull request #29133: [SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659961178


   **[Test build #126044 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/126044/testReport)** for PR 29133 at commit [`2d39b8e`](https://github.com/apache/spark/commit/2d39b8e366573f8388aa49d77c9d100ccd94bcb1).


----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659516918


   **[Test build #125989 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125989/testReport)** for PR 29133 at commit [`663e5a7`](https://github.com/apache/spark/commit/663e5a74995445d4b85984faa5e502258b3c1aa3).


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29133: [WIP][SPARK-32253][INFRA] Show errors only for the sbt tests of github actions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659617046






----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #29133: [WIP][SPARK-32253][INFRA] Make readability better in the test result logs

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29133:
URL: https://github.com/apache/spark/pull/29133#issuecomment-659530106


   **[Test build #125991 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/125991/testReport)** for PR 29133 at commit [`3590262`](https://github.com/apache/spark/commit/3590262dda8b3217b0283251223f8763cc747c0f).


----------------------------------------------------------------
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



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