Skip to content

Commit e766635

Browse files
committed
chore: testing on CI
1 parent 0400f4f commit e766635

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
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:
@@ -35,4 +35,4 @@ jobs:
3535
run: cargo build
3636

3737
- name: Run tests
38-
run: cargo test
38+
run: cargo test -- --nocapture

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)