Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.1.0] Cherry pick a few changes to address flaky tests #20956

Merged
merged 4 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Allow network for two Java tests to avoid binding issue on macOS sandbox
https://buildkite.com/bazel/bazel-bazel/builds/26312#018d1722-0e79-47b4-82ed-9cc47487e05a

Related issues:
- #20743
- #5206

PiperOrigin-RevId: 599452705
Change-Id: I2fdccd9df513064e5bc9add4f1802d4c1ce9c6da
  • Loading branch information
meteorcloudy committed Jan 19, 2024
commit 795f7bb32eb1fda360741c8b023ce0e1104c5a7d
1 change: 1 addition & 0 deletions src/test/java/com/google/devtools/build/lib/server/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ java_library(
java_test(
name = "ServerTests",
size = "medium",
tags = ["requires-network"], # https://github.com/bazelbuild/bazel/issues/20743
test_class = "com.google.devtools.build.lib.AllTests",
runtime_deps = [
":ServerTests_lib",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ java_test(
java_test(
name = "DebugServerTransportTest",
srcs = ["DebugServerTransportTest.java"],
tags = ["requires-network"], # https://github.com/bazelbuild/bazel/issues/20743
deps = [
"//src/main/java/com/google/devtools/build/lib/events",
"//src/main/java/com/google/devtools/build/lib/starlarkdebug/proto:starlark_debugging_java_proto",
Expand Down