File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
modules/integration/src/test/scala/scala/cli/integration Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import scala.concurrent.ExecutionContext.Implicits.global
15
15
import scala .concurrent .duration ._
16
16
import scala .io .Codec
17
17
import scala .util .control .NonFatal
18
+ import scala .util .Properties
18
19
19
20
abstract class BspTestDefinitions (val scalaVersionOpt : Option [String ])
20
21
extends munit.FunSuite with TestScalaVersionArgs {
@@ -401,7 +402,10 @@ abstract class BspTestDefinitions(val scalaVersionOpt: Option[String])
401
402
)
402
403
val root = inputs.root()
403
404
404
- withBsp(root, Seq (" ." )) { (localClient, remoteServer) =>
405
+ val extraArgs =
406
+ if (Properties .isWin) Seq (" -v" , " -v" , " -v" )
407
+ else Nil
408
+ withBsp(root, Seq (" ." ) ++ extraArgs) { (localClient, remoteServer) =>
405
409
async {
406
410
val buildTargetsResp = await(remoteServer.workspaceBuildTargets().asScala)
407
411
val target = {
You can’t perform that action at this time.
0 commit comments