Skip to content

Commit

Permalink
fix: ignore mima error for BQSmokeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
ingarabr committed Dec 13, 2023
1 parent ff2b168 commit 622c49d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,10 @@ lazy val testing = crossProject(JVMPlatform)
"org.scalameta" %% "munit" % "0.7.29",
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7"
),
mimaBinaryIssueFilters := Nil
mimaBinaryIssueFilters := List(
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"no.nrk.bigquery.testing.BQSmokeTest.bqCheckTableValueFunction")
)
)

lazy val codegen = crossProject(JVMPlatform)
Expand Down

0 comments on commit 622c49d

Please sign in to comment.