Make integrationTest sequential

This commit is contained in:
Eugene Yokota 2025-08-24 04:28:57 -04:00
parent ff328a092d
commit af967705e9
1 changed files with 2 additions and 1 deletions

View File

@ -370,7 +370,8 @@ lazy val integrationTest = (project in file("integration-test"))
},
testOnly in Test := {
(testOnly in Test).dependsOn(((packageBin in Universal) in LocalRootProject).dependsOn(((stage in (Universal) in LocalRootProject)))).evaluated
}
},
parallelExecution in Test := false
)
def downloadUrlForVersion(v: String) = (v split "[^\\d]" flatMap (i => catching(classOf[Exception]) opt (i.toInt))) match {