-
After updating to Go 1.18 or maybe just vscode-go 0.32, clicking "debug test" for a unit test function no longer works in any of my workspaces: extension v0.32. All Go tools updated using the extension. The launch.json varies between projects, but they are all fairly vanilla, and they all used to work fine. e.g. {
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Process",
"type": "go",
"request": "attach",
"mode": "local",
"processId": 3578
}
]
} Or even in a fresh workspace where it's just created automatically as Is this a bug or do I have something wrong on my end? It suddenly started doing this for all my Go workspaces. VSCode: Version: 1.65.2 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
As the error message says there seems to be an environment variable with numeric value. |
Beta Was this translation helpful? Give feedback.
As the error message says there seems to be an environment variable with numeric value.
Can you turn on the debug trace and share what
attach
request looks like?