We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f39cc7 commit 00bbd75Copy full SHA for 00bbd75
1 file changed
src/commands/tests/mod.rs
@@ -899,8 +899,11 @@ async fn do_test_on_package(
899
.await;
900
}
901
let test_output = match fslabs_test.id == "cargo_lock" {
902
- true => fix_workspace_lockfile(&repo_root, &package_path, &base_revspec, true)
903
- .unwrap_or_else(|e| e.into()),
+ true => {
+ let workspace_path = repo_root.join(&member.workspace);
904
+ fix_workspace_lockfile(&repo_root, &workspace_path, &base_revspec, true)
905
+ .unwrap_or_else(|e| e.into())
906
+ }
907
908
false => {
909
Script::new(&fslabs_test.command, true)
0 commit comments