You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, statement highlighting in the HTML reports is disabled. This is because there is a compiler bug when
72
+
using range positioning, and until that is fixed it can break code that uses certain constructs. You can enable it to
73
+
see if your code is not affected by adding this to your build file:
74
+
75
+
```scala
76
+
ScoverageKeys.highlighting :=true
77
+
```
78
+
79
+
## Failing tests
80
+
81
+
If you are running into a scenario where your tests normally pass, but fail when scoverage is enabled,
82
+
then the most common culprit is timing issues on futures and other async operations. Scoverage does a lot of file
83
+
writing behind the scenes in order to track which statements have been executed, and this slows down tests, so try upping the timeouts by an order of magnitude.
84
+
69
85
## Disable parallel test execution
70
86
71
87
It is possible to disable the parallel execution for tests:
0 commit comments