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\\/.*"
9494** NOTE** : The ` .scala ` file extension needs to be omitted from the
9595filename, if one is given.
9696
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+.
9898
9999You can also mark sections of code with comments like:
100100
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ object ScoverageSbtPlugin extends AutoPlugin {
9595 .exists {
9696 case (3 , minor) if minor > 4 => true
9797 case (3 , minor) if (minor == 4 && patch.exists(_ >= 2 )) => true
98+ case (3 , minor) if (minor == 3 && patch.exists(_ >= 4 )) => true
9899 case _ => false
99100 }
100101 }
You can’t perform that action at this time.
0 commit comments