diff --git a/index.html b/index.html index 54d5ec4..7eb921d 100644 --- a/index.html +++ b/index.html @@ -101,6 +101,14 @@

Multiproject builds

This creates individual coverage reports into $childProjectDir/target/scala_<ver>/coverage-report/

Merge all the existing child reports into $parentProjectDir/target/scala_<ver>/coverage-report/ with:

$ sbt scct-merge-report
+ +

Test filtering

+ Run coverage report with only tests in a given package: +
sbt scct-test:test-only my.packge.*
+ + Run coverage report with only tests with a given class name: +
sbt scct-test:test-only *MyTest
+

...Enjoy