Skip to content

Commit c12efe1

Browse files
committed
Updated Jenkins file
1 parent 6ef107d commit c12efe1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

jenkins/stil-nightly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pipeline {
4949
allowMissing : true,
5050
alwaysLinkToLastBuild: false,
5151
keepAll : true,
52-
reportDir : './target/scala-2.13/scoverage-report',
52+
reportDir : './target/scala-3.6.2/scoverage-report',
5353
reportFiles : 'index.html',
5454
reportName : "Scoverage Report"
5555
])

project/Coverage.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ object Coverage extends AutoPlugin {
88

99
override def projectSettings: Seq[Setting[_]] =
1010
Seq(
11-
coverageEnabled := false, // XXX TODO FIXME
11+
// XXX TODO FIXME: Coverage broken in Scala3? See https://contributors.scala-lang.org/t/coverage-broken-why-does-nobody-care/6262/44
12+
// Coverage results for Scala3 show much lower values than for Scala2.
13+
coverageEnabled := false,
1214
coverageMinimumStmtTotal := 80,
1315
coverageFailOnMinimum := true,
1416
coverageHighlighting := true,

0 commit comments

Comments
 (0)