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

slawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git


The following commit(s) were added to refs/heads/main by this push:
     new 6a55c57  Update junit-interface to 0.13.2
6a55c57 is described below

commit 6a55c57a8234055debe3efe00189907e48a36c22
Author: Scala Steward <[email protected]>
AuthorDate: Tue Oct 26 06:04:08 2021 +0200

    Update junit-interface to 0.13.2
    
    Also use the new --verbosity=1 option to only show test suite summaries
    and tests that fail. Individual tests that are sucessful are not listed.
---
 build.sbt                  | 2 +-
 project/Dependencies.scala | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.sbt b/build.sbt
index 668934e..0558960 100644
--- a/build.sbt
+++ b/build.sbt
@@ -194,7 +194,7 @@ lazy val commonSettings = Seq(
   resourceManaged := baseDirectory.value / "resource_managed",
   libraryDependencies ++= Dependencies.common,
   IntegrationTest / parallelExecution := false,
-  testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v"),
+  testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "--verbosity=1"),
 ) ++ Defaults.itSettings
 
 def scalacCrossOptions(scalaVersion: String) =
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index e08c5d8..4960d32 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -50,7 +50,7 @@ object Dependencies {
 
   lazy val test = Seq(
     "junit" % "junit" % "4.13.2" % "it,test",
-    "com.novocode" % "junit-interface" % "0.11" % "it,test",
+    "com.github.sbt" % "junit-interface" % "0.13.2" % "it,test",
     "org.scalacheck" %% "scalacheck" % "1.15.4" % "it,test"
   )
 

Reply via email to