File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ coverageExcludedFiles := ".*\\/two\\/GoodCoverage;.*\\/three\\/.*"
94
94
** NOTE** : The ` .scala ` file extension needs to be omitted from the
95
95
filename, if one is given.
96
96
97
- ** NOTE** : These two options only work for Scala2 and Scala 3.4.2+.
97
+ ** NOTE** : These two options only work for Scala2, Scala 3.3.4+ and Scala 3.4.2+.
98
98
99
99
You can also mark sections of code with comments like:
100
100
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ object ScoverageSbtPlugin extends AutoPlugin {
95
95
.exists {
96
96
case (3 , minor) if minor > 4 => true
97
97
case (3 , minor) if (minor == 4 && patch.exists(_ >= 2 )) => true
98
+ case (3 , minor) if (minor == 3 && patch.exists(_ >= 4 )) => true
98
99
case _ => false
99
100
}
100
101
}
You can’t perform that action at this time.
0 commit comments