summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNils Homer <nh13@users.noreply.github.com>2019-05-28 04:10:51 -0700
committerTobias Roeser <le.petit.fou@web.de>2019-05-28 13:10:51 +0200
commit68c8135341c77ef545327a820590c3e920784fbd (patch)
tree7c6675f476ac625b499917a21f272ce2f31973e4 /docs
parentd3e277f813dd0ad96a4ddeac5cdf62546ebcec41 (diff)
downloadmill-68c8135341c77ef545327a820590c3e920784fbd.tar.gz
mill-68c8135341c77ef545327a820590c3e920784fbd.tar.bz2
mill-68c8135341c77ef545327a820590c3e920784fbd.zip
Scoverage can output an XML report (#618)
* use the _.scoverage.xmlReport task
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/9 - Contrib Modules.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/pages/9 - Contrib Modules.md b/docs/pages/9 - Contrib Modules.md
index a4b3b954..61e425d3 100644
--- a/docs/pages/9 - Contrib Modules.md
+++ b/docs/pages/9 - Contrib Modules.md
@@ -622,10 +622,12 @@ mill foo.scoverage.compile # compiles your module with test instrumentation
mill foo.test # tests your project and collects metrics on code coverage
mill foo.scoverage.htmlReport # uses the metrics collected by a previous test run to generate a coverage report in html format
+mill foo.scoverage.xmlReport # uses the metrics collected by a previous test run to generate a coverage report in xml format
```
The measurement data is available at `out/foo/scoverage/data/`,
-and the html report is saved in `out/foo/scoverage/htmlReport/`.
+the html report is saved in `out/foo/scoverage/htmlReport/`,
+and the xml report is saved in `out/foo/scoverage/xmlReport/`.
## TestNG