Open bstrie opened 2 years ago
This came from a zulip thread
When in a workspace, cargo generally shows everything relative to the workspace root, so this change makes sense to me though I have no idea the work required to do it or the side effects it may have.
Problem
If I have a workspace with crates
foo
andbar
, and they both have integration tests, then runningcargo test
orcargo test --workspace
produces output that looks like:Notable, nowhere in either of these lines (or in anywhere else in any of the integration test output) does Cargo associate which integration test output belongs to which crate.
Proposed Solution
It would be easier for users to visually parse the output here if Cargo would include some indication as to which crate each integration test belongs to, for example by using the path to the workspace root rather than the path to the crate root:
Notes
No response