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
On VSCode, when running a test using lens snipper, the test is run using cargo test.
The debug use "cargo test --message-format=json --no-run ..." in order to get executable information in order to construct debugger args.
If in .cargo/config.toml the runner is overridden the run is working well unlike the debug.
Indeed "cargo test --message-format=json --no-run ..." doesn't give any information about the runner.
A way to have the runner is to parse the line containing Executable on stderr when using "cargo test -v --no-run"
The text was updated successfully, but these errors were encountered:
No because if I run the test the runner is used (with cargo test called by the extension). But in the case of debug cargo test is only used to get infomation, in which, the runner information is missing.
On VSCode, when running a test using lens snipper, the test is run using cargo test.
The debug use "cargo test --message-format=json --no-run ..." in order to get executable information in order to construct debugger args.
If in .cargo/config.toml the runner is overridden the run is working well unlike the debug.
Indeed "cargo test --message-format=json --no-run ..." doesn't give any information about the runner.
A way to have the runner is to parse the line containing Executable on stderr when using "cargo test -v --no-run"
The text was updated successfully, but these errors were encountered: