Skip to content

Commit

Permalink
Reenable test on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Jul 24, 2024
1 parent 9196215 commit 43f389d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions examples/dynamic_deps/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ sh_test(
}),
data = [":bin_runfiles"],
deps = ["@bazel_tools//tools/bash/runfiles"],
# TODO: Get this test to pass on macOS and Windows.
target_compatible_with = ["@platforms//os:linux"],
# TODO: Get this test to pass on Windows.
target_compatible_with = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
)

sh_test(
Expand Down

0 comments on commit 43f389d

Please sign in to comment.