Skip to content

Commit

Permalink
Fixing Parallel Lib Deps
Browse files Browse the repository at this point in the history
* Adding `test/concurrent-coordination.bash` to `data` list on `parallel_lib`.
  * This file is loaded by "test/fixtures/parallel/parallel.bats", so it should be available at runtime.
  * Although the parallel test is currently disabled, this is still a necessary fix for when it is eventually re-enabled.
  • Loading branch information
qec-pconner authored and filmil committed Jan 14, 2023
1 parent 39f7c19 commit 93714c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ sh_library(
name = "parallel_lib",
srcs = ["test/parallel.bats"],
visibility = ["//visibility:public"],
data = glob(["test/fixtures/parallel/**"]),
data = glob([
"test/concurrent-coordination.bash",
"test/fixtures/parallel/**",
]),
)
sh_library(
Expand Down

0 comments on commit 93714c7

Please sign in to comment.