We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 300aecd commit aa11945Copy full SHA for aa11945
1 file changed
tools/run-cov
@@ -1184,7 +1184,11 @@ def main():
1184
workspace_root = find_workspace_root()
1185
if workspace_root:
1186
os.chdir(workspace_root)
1187
- toolchain_bin = find_toolchain_bin()
+ # When running inside a Bazel test action (sandboxed), calling `bazel`
1188
+ # subprocesses can hang trying to connect back to the parent Bazel server.
1189
+ # With --reuse we only need the demangler for real coverage data, not
1190
+ # fixture tests, so skip the nested `bazel info` call entirely.
1191
+ toolchain_bin = None if args.reuse else find_toolchain_bin()
1192
1193
# Get LCOV data
1194
if not args.reuse:
0 commit comments