-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a641cf6
commit e0f1288
Showing
9 changed files
with
122 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
tests/slow/src/test/scala/tests/mill/MillBreakpointDapSuite.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package tests.mill | ||
|
||
import tests.MillBuildLayout | ||
import tests.MillServerInitializer | ||
import tests.debug.BaseBreakpointDapSuite | ||
|
||
class MillBreakpointDapSuite | ||
extends BaseBreakpointDapSuite( | ||
"mill-debug-breakpoint", | ||
MillServerInitializer, | ||
MillBuildLayout, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
tests/slow/src/test/scala/tests/mill/MillStepDapSuite.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package tests.mill | ||
|
||
import scala.meta.internal.metals.BuildInfo | ||
|
||
import tests.MillBuildLayout | ||
import tests.MillServerInitializer | ||
import tests.debug.BaseStepDapSuite | ||
|
||
class MillStepDapSuite | ||
extends BaseStepDapSuite( | ||
"mill-debug-step", | ||
MillServerInitializer, | ||
MillBuildLayout, | ||
) { | ||
|
||
// otherwise we get both Scala 2.12 and 2.13 dependencies, which is more tricky for the tests | ||
override def scalaVersion: String = BuildInfo.scala212 | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters