-
Notifications
You must be signed in to change notification settings - Fork 9
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
How to use rustTestExplorer.rootCargoManifestFilePath? #183
Comments
hi 👋 are you using a multi root work space by any chance? or just opening one directory level higher? |
No multi root shenanigans; just opening one level higher. |
Anything interesting showing in the logs? |
I tried something similar. The logs report that no |
Thank you both, will try to dig into it later this week |
I had some free time to look into this. I believe I found a solution. Let me know what you think and if there should be any changes that I should make! #186 |
Awesome, thanks so much @EricHenry! |
If somebody could fix the |
Hello! I have a repository with the following structure:
Since
Cargo.toml
is not on the root path, test explorer does not show any testes on the UI. If I open therust_project
folder directly, it works as expected.Looking at the plugin contributions, I noticed
rustTestExplorer.rootCargoManifestFilePath
. I tried the following combinations:./rust_project
./rust_project/Cargo.toml
${workspace}/rust_project
${workspace}/rust_project/Cargo.toml
/home/myuser/myprojects/some_project/rust_project
/home/myuser/myprojects/some_project/rust_project/Cargo.toml
But none of them worked (tests still weren't showing on the UI).Am I doing something wrong here? Or this option is bugged/not implemented? Not sure if it helps, but the test lens from
rust-analyzer
do show up and work as expected.The text was updated successfully, but these errors were encountered: