How can I get complete stacktraces for exceptions thrown in tests when using sbt and testng?

wn- picture wn- · Aug 30, 2011 · Viewed 13.4k times · Source

The stacktraces are truncated - e.g. they end with [info] ...

Using last or changing traceLevel doesn't help - it simply prints the complete stacktrace of the sbt wrapper.

This is testing with testng (also I believe using scalatest and sl4j)

Answer

David picture David · Dec 12, 2014

Using hints found in the documentation here:

(quoted)

You can configure the output shown when running with sbt in four ways: 1) turn off color, 2) show short stack traces, 3) full stack traces, and 4) show durations for everything. To do so you must pass a -o argument to ScalaTest, and after the -o, place any combination of:

  • D - show durations
  • S - show short stack traces
  • F - show full stack traces
  • W - without color

For example, "-oDF" would show full stack traces and durations (the amount of time spent in each test).

To pass arguments from sbt to ScalaTest you can either add test options globally, like this:

testOptions in Test += Tests.Argument("-oD")

(See the website for the rest of the quote)

You can use the following sbt command to enable full stack traces in tests:

> set testOptions in YourProjectName += Tests.Argument("-oF")

Per Sasha's comment, this can also be done from the command line per test run as shown below.

$ sbt test -- -oF