Releases: programmiersportgruppe/sbt-tabular-test-reporter
v4.0.0
3.0.0
Features
Making Output Format Configurable
The output format can now be configured using the testReportFormats
-setting,
e.g. like this:
testReportFormats := Set(WhiteSpaceDelimited, Html, Json)
Introducing Json Report
The Json format writes a complete Json document for each test case.
The results for test cases are new-line separated.
In addition to the fields that were already in the Html and WhiteSpaceDelimited
format the following fields were added:
-
Start time of individual test
The timestamp that was originally exposed in the text file and
the html table was the start of the overall test execution.To trouble shoot “interference” issues it is helpful to know when any
given test case was executed. -
The full stack trace of the failure
This should help with diagnosing failed tests.
Bugs fixed
- Produce report entry for failed test class constructor
- Add XML declaration to HTML output
- Adding CSS for sorting table headers
2.2.1
2.2.0
2.1.0
Introducing symlink for html result
Now there is also a constant file name for html results. This is useful for
build servers that support linking an artefact to a build result page.
Fixing html colouring
This broke when we added the time stamp.
Also choosing sans serif font and nicer tone of yellow.
Adding travis build
2.0.0
1.4.1
1.4.0
Adding timestamp to report
Adding the timestamp which is already in the filename to the
result table (using the same one). This makes it easier to report
across different build runs.
Bugfixes
- Fixing symlink handling to deal with broken link
- Making test reporter thread safe
- Text files shall end in a newline character