Skip to content

Commit 5f377b7

Browse files
committed
Exclude classes and packages with ScoverageCompile
`scoverageTest` is wrong -> it should be `ScoverageTest` But with `ScoverageTest` it does not work. Using `ScoverageCompile` enable the exclusions.
1 parent c8914a8 commit 5f377b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ regular expressions.
3939

4040
Example:
4141
```scala
42-
ScoverageKeys.excludedPackages in scoverageTest := "<empty>;Reverse.*;.*AuthService.*;models\.data\..*"
42+
ScoverageKeys.excludedPackages in ScoverageCompile := "<empty>;Reverse.*;.*AuthService.*;models\.data\..*"
4343
```
4444

4545
The regular expressions are matched against the fully qualified class name, and must match the entire string to take effect.

0 commit comments

Comments
 (0)