File tree Expand file tree Collapse file tree 3 files changed +2
-66
lines changed
language-server/test/dotty/tools/languageserver Expand file tree Collapse file tree 3 files changed +2
-66
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ pipeline:
48
48
image : lampepfl/dotty:2018-04-10
49
49
commands :
50
50
- cp -R . /tmp/4/ && cd /tmp/4/
51
- - ./project/scripts/sbt dotty-language-server/test:run
51
+ - ./project/scripts/sbt dotty-language-server/test
52
52
53
53
test_sbt :
54
54
group : test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -766,14 +766,13 @@ object Build {
766
766
// fork so that the shutdown hook in Main is run when we ctrl+c a run
767
767
// (you need to have `cancelable in Global := true` in your global sbt config to ctrl+c a run)
768
768
fork in run := true ,
769
+ fork in Test := true ,
769
770
libraryDependencies ++= Seq (
770
771
" org.eclipse.lsp4j" % " org.eclipse.lsp4j" % " 0.3.0" ,
771
772
Dependencies .`jackson-databind`
772
773
),
773
774
javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value,
774
775
775
- test := {}, // Tests should be run with dotty-language-server/test:run
776
-
777
776
run := Def .inputTaskDyn {
778
777
val inputArgs = spaceDelimited(" <arg>" ).parsed
779
778
You can’t perform that action at this time.
0 commit comments