mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-20 14:03:11 +01:00
Remove -Xfatal-warnings flag for tests (#2469)
This commit is contained in:
parent
f5dae42761
commit
cc2c438da1
1 changed files with 3 additions and 2 deletions
|
@ -123,10 +123,11 @@ object CommonSettings {
|
|||
}
|
||||
|
||||
def testCompilerOpts(scalaVersion: String): Seq[String] = {
|
||||
commonCompilerOpts ++
|
||||
(commonCompilerOpts ++
|
||||
//initialization checks: https://docs.scala-lang.org/tutorials/FAQ/initialization-order.html
|
||||
Vector("-Xcheckinit") ++
|
||||
compilerOpts(scalaVersion)
|
||||
compilerOpts(scalaVersion))
|
||||
.filterNot(_ == "-Xfatal-warnings")
|
||||
}
|
||||
|
||||
lazy val testSettings: Seq[Setting[_]] = Seq(
|
||||
|
|
Loading…
Add table
Reference in a new issue