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
Using ; with the 2.1.0 plugin and 3.4.2 Scala does not exclude specified values. Changing it to , seems to work.
I have only tried it for coverageExcludedFiles, but I guess it works the same for both options.
Tests seems to lack this case.
The text was updated successfully, but these errors were encountered:
seems I've missed this, but the fix should be as easy as replace ; with , for Scala 3.
I can send a PR once I have some time or anyone else can contribute as well :)
The
-coverage-exclude-files
and-coverage-exclude-packages
areMultiStringSetting
shttps://github.com/scala/scala3/blob/2d0e37353defcec46206e9f0845c738286aabce5/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala#L122-L123
The
,
is used as a separator, at least according tohttps://github.com/scala/scala3/blob/2d0e37353defcec46206e9f0845c738286aabce5/compiler/src/dotty/tools/dotc/config/Settings.scala#L239
README example uses
;
sbt-scoverage/README.md
Lines 77 to 89 in 76a39fb
Using
;
with the2.1.0
plugin and3.4.2
Scala does not exclude specified values. Changing it to,
seems to work.I have only tried it for
coverageExcludedFiles
, but I guess it works the same for both options.Tests seems to lack this case.
The text was updated successfully, but these errors were encountered: