File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1414 strategy :
1515 matrix :
1616 os :
17- - ubuntu-latest
18- - macos-latest
17+ # - ubuntu-latest
18+ # - macos-latest
1919 - windows-latest
2020 runs-on : ${{ matrix.os }}
2121 steps :
3535 run : cargo build
3636
3737 - name : Run tests
38- run : cargo test
38+ run : cargo test -- --nocapture
Original file line number Diff line number Diff line change @@ -298,6 +298,8 @@ pub fn init_pnp_manifest<P: AsRef<Path>>(manifest: &mut Manifest, p: P) {
298298
299299 info. package_location = PathBuf :: from ( normalized_location) ;
300300
301+ println ! ( "info.package_location: {}" , info. package_location. display( ) ) ;
302+
301303 if !info. discard_from_lookup {
302304 manifest. location_trie . insert (
303305 & info. package_location ,
@@ -349,6 +351,8 @@ pub fn find_locator<'a, P: AsRef<Path>>(
349351 }
350352 }
351353
354+ println ! ( "path {}" , path. as_ref( ) . to_string_lossy( ) ) ;
355+
352356 manifest. location_trie . get_ancestor_value ( & path)
353357}
354358
You can’t perform that action at this time.
0 commit comments