mirror of https://github.com/sbt/sbt.git
Adding docs for the test report hooks.
This commit is contained in:
parent
fc3f6dd1d9
commit
373166be36
|
|
@ -13,6 +13,7 @@ Changes
|
|||
- name-hashing incremental compiler now supports scala macros.
|
||||
- ``testResultLogger`` is now configured.
|
||||
- sbt-server hooks for task cancellation.
|
||||
- Add ``JUnitXmlReportPlugin`` which generates junit-xml-reports for all tests.
|
||||
|
||||
|
||||
0.13.1 to 0.13.2
|
||||
|
|
|
|||
|
|
@ -104,6 +104,18 @@ tests for that file complete. This can be disabled by setting :key:`logBuffered`
|
|||
|
||||
logBuffered in Test := false
|
||||
|
||||
|
||||
Test Reports
|
||||
------------
|
||||
By default, sbt will generate JUnit XML test reports for all tests in the build, located
|
||||
in the ``target/test-reports`` directory for a project. This can be disabled by
|
||||
disabling the ``JUnitXmlReportPlugin``
|
||||
|
||||
::
|
||||
|
||||
val myProject = project in file(".") disablePlugins (plugins.JUnitXmlReportPlugin)
|
||||
|
||||
|
||||
Options
|
||||
=======
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue