summaryrefslogtreecommitdiff
path: root/docs/pages/9 - Contrib Modules.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pages/9 - Contrib Modules.md')
-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