Skip to content

Commit 5f223b2

Browse files
authored
Remove sbt 1.5.x tests due to sbt-sourcegraph 0.4.4 incompatibility (#843)
sbt-sourcegraph 0.4.4 (built with sbt 1.11.1) is incompatible with sbt 1.5.2, causing tests to hang indefinitely. sbt 1.10.x tests remain.
1 parent ee31653 commit 5f223b2

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

tests/buildTools/src/test/scala/tests/SbtBuildToolSuite.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package tests
22

3-
import tests.Tool.SBT15
4-
53
abstract class SbtBuildToolSuite(sbt: Tool.SBT) extends BaseBuildToolSuite {
64

75
import Tool._
@@ -62,5 +60,4 @@ abstract class SbtBuildToolSuite(sbt: Tool.SBT) extends BaseBuildToolSuite {
6260

6361
import Tool._
6462

65-
class Sbt_15_BuildToolSuite extends SbtBuildToolSuite(SBT15)
6663
class Sbt_110_BuildToolSuite extends SbtBuildToolSuite(SBT110)

tests/buildTools/src/test/scala/tests/Tool.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ object Tool {
4646
sealed abstract class SBT(version: String, support: JVMSupport)
4747
extends Tool("sbt", version, support)
4848
// See https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html#build-tool-compatibility-table
49-
case object SBT15 extends SBT("1.5.2", atMostJava(17))
5049
case object SBT110 extends SBT("1.10.0", noRestrictions)
5150

5251
sealed abstract class Scala(version: String, support: JVMSupport)

0 commit comments

Comments
 (0)