Skip to content

Commit

Permalink
Revert "[SPARK-32253][INFRA] Show errors only for the sbt tests of gi…
Browse files Browse the repository at this point in the history
…thub actions"

This reverts commit 026b0b9.
  • Loading branch information
gengliangwang committed Jul 24, 2020
1 parent 84efa04 commit 32191ee
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions dev/run-tests.py
Expand Up @@ -653,9 +653,6 @@ def main():
# If we're running the tests in Github Actions, attempt to detect and test
# only the affected modules.
if test_env == "github_actions":
# Set the log level of sbt as ERROR to make the output more readable.
if build_tool == "sbt":
extra_profiles.append("--error")
if os.environ["GITHUB_BASE_REF"] != "":
# Pull requests
changed_files = identify_changed_files_from_git_commits(
Expand Down
7 changes: 0 additions & 7 deletions project/SparkBuild.scala
Expand Up @@ -1031,13 +1031,6 @@ 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 with full stack traces in github action to make the log more
// readable.
// Check https://www.scalatest.org/user_guide/using_the_runner for the details of options .
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest,
sys.env.get("GITHUB_ACTIONS").map { _ =>
Seq("-eNCXEHLOPQMDF")
}.getOrElse(Nil): _*),
testOptions in Test += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
// Required to detect Junit tests for each project, see also https://github.com/sbt/junit-interface/issues/35
crossPaths := false,
Expand Down

0 comments on commit 32191ee

Please sign in to comment.