Skip to content

Commit

Permalink
Fix e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Nov 11, 2024
1 parent 08fbbd6 commit a8a2b90
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,24 @@ lazy val e2e = module("e2e")
.task {
s"""${(lsp / organization).value}::${(lsp / moduleName).value}:${(lsp / version).value}"""
}
.dependsOn(lsp / publishLocal)
// todo: replace with a full publishLocal before e2e in particular gets run (but not before tests run normally)
.dependsOn(
lsp / publishLocal,
languageSupport / publishLocal,
core / publishLocal,
parser / publishLocal,
pluginCore / publishLocal,
source / publishLocal,
treesitter / publishLocal,
ast / publishLocal,
formatter / publishLocal,
protocol4s / publishLocal,
)
.taskValue
.named("lspArtifact")
),
publish / skip := true,
Test / fork := true,
)
.dependsOn(lsp)

Expand Down

0 comments on commit a8a2b90

Please sign in to comment.