Skip to content

Commit

Permalink
#374 Switch default Scala to 2.12 in build.sbt.
Browse files Browse the repository at this point in the history
  • Loading branch information
yruslan committed Sep 18, 2024
1 parent ef7682b commit 46620ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 1 addition & 6 deletions pramen/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,13 @@
* limitations under the License.
*/

import Dependencies._
import Versions._
import BuildInfoTemplateSettings._
import com.github.sbt.jacoco.report.JacocoReportSettings

val scala211 = "2.11.12"
val scala212 = "2.12.19"
val scala213 = "2.13.13"

ThisBuild / organization := "za.co.absa.pramen"

ThisBuild / scalaVersion := scala211
ThisBuild / scalaVersion := scala212
ThisBuild / crossScalaVersions := Seq(scala211, scala212, scala213)

ThisBuild / scalacOptions := Seq("-unchecked", "-deprecation")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ class IncrementalPipelineParquetLongSuite extends IncrementalPipelineLongFixture
testOffsetOnlyHistoricalDateRangeWithFillGaps(format)
}

"deal with uncommitted offsets when no path" in {
testOffsetOnlyDealWithUncommittedOffsetsWithNoPath(format)
}

"deal with uncommitted offsets when no data" in {
testOffsetOnlyDealWithUncommittedOffsetsWithNoData(format)
}
Expand Down

0 comments on commit 46620ed

Please sign in to comment.