This is an implementation of the testing-interface for SBT, that focuses on making junit test output useful.
Most output is suppressed, and more can be enabled, if desired.
Short stack traces for test failures are enabled by default.
Add "com.dadrox" % "sbt-junit" % "0.3.1" % "test"
to your dependencies.
Add testFrameworks += new TestFramework("com.dadrox.sbt.junit.JunitFramework")
to your build.sbt
Or testFrameworks += new TestFramework("com.dadrox.sbt.junit.JunitFramework")
to your full configuration.
Default test options can be added to your full build configuration like this:
testOptions in Test += Tests.Argument(framework, "-vo", "-tv")
System properties can be used to enable settings for specific contexts, such as Continuous Integration (recommended):
> sbt -Dsbt.reports.traces.short= test
test-only and test-quick allow you to provide test options on the fly:
> sbt "test-only [test suite pattern] -- -td -vss"
sbt> test-quick [test suite pattern] -- -vts
To see your printlns in your tests and code:
> sbt "test-only -- -vo" // runs all tests
> sbt "test-only [test suite pattern] -- -vo"
sbt> test-only [test suite pattern] -- -vo
<Long option> <Short> <System Property>
--no-color -nc -Dsbt.log.noformat=true
Disable color output.
It's usually better to completely disable colors in sbt output with -Dsbt.log.noformat=true
--verbose-output -vo -Dsbt.reports.verbose.output=
Log test stdout/err inline at info level.
--verbose-traces -tv -Dsbt.reports.traces.verbose=
Log full test failure stacktraces at error level.
--disable-traces -td -Dsbt.reports.traces.disable=
Log shortened test failure stacktraces at error level.
--verbose-test-start -vts -Dsbt.reports.verbose.test.start=
Log "Test Started" messages at info rather than debug.
--verbose-test-pass -vtp -Dsbt.reports.verbose.test.pass=
Log "Test Passed" messages at info rather than debug.
--verbose-suite-start -vss -Dsbt.reports.verbose.suite.start=
Log "Test Suite Started" messages at info rather than debug.
Now implemented in Java, so should work with all version of Scala and SBT.
- There is no way to create list of all failed suites/test to log at the end of the test run.
Copyright (C) 2012-2013, Christopher Wood (dadrox)
Published under BSD 2-Clause License