Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,14 @@ <h3>Multiproject builds</h3>
<p>This creates individual coverage reports into <span class="mono">$childProjectDir/target/scala_&lt;ver&gt;/coverage-report/</span></p>
<p>Merge all the existing child reports into <span class="mono">$parentProjectDir/target/scala_&lt;ver&gt;/coverage-report/</span> with:</p>
<pre>$ sbt scct-merge-report</pre>

<h3>Test filtering</h3>
Run coverage report with only tests in a given package:
<pre>sbt scct-test:test-only my.packge.*</pre>

Run coverage report with only tests with a given class name:
<pre>sbt scct-test:test-only *MyTest</pre>

<h3>...Enjoy</h3>

</div>
Expand Down