You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run my tests via Bazel, after the 1.8.0 change where CallerInfo displays the full path to the terminal I now get quite spammy outputs. Looks to be from #1201
This is because Bazel runs your code within a sandbox, and this change is now printing the path to the sandbox location rather than the sources location.
Ideally, instead of this huge string it would just print src/foo/internal/datastore/foo_test.go:1694 as the path
As a result of this change, I can no longer CTRL+Click on the error trace path to find the responsible source code as VSCode doesn't understand this huge path.
Is there any way to switch to the old error trace path in this case? Thanks!
The text was updated successfully, but these errors were encountered:
When I run my tests via Bazel, after the 1.8.0 change where
CallerInfo
displays the full path to the terminal I now get quite spammy outputs. Looks to be from #1201This is because Bazel runs your code within a sandbox, and this change is now printing the path to the sandbox location rather than the sources location.
Eg:
Ideally, instead of this huge string it would just print
src/foo/internal/datastore/foo_test.go:1694
as the pathAs a result of this change, I can no longer CTRL+Click on the error trace path to find the responsible source code as VSCode doesn't understand this huge path.
Is there any way to switch to the old error trace path in this case? Thanks!
The text was updated successfully, but these errors were encountered: