Skip to content

Commit f94ce7c

Browse files
committed
fix: attempt to fix windows failure
1 parent b7e13c8 commit f94ce7c

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
os:
1414
- ubuntu-latest
15-
- macos-latest
15+
# - macos-latest
1616
- windows-latest
1717
runs-on: ${{matrix.os}}
1818
steps:

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ pub fn load_pnp_manifest<P: AsRef<Path>>(p: P) -> Result<Manifest, Error> {
187187
.unwrap();
188188
}
189189

190+
dbg!(&manifest_content);
190191
let manifest_match = RE.find(&manifest_content)
191192
.unwrap_or_default()
192193
.ok_or_else(|| Error::FailedManifestHydration(Box::new(FailedManifestHydration {

src/lib_tests.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ mod tests {
5858
};
5959
}
6060

61-
#[cfg(not(target_os = "windows"))]
6261
#[test]
6362
fn test_load_pnp_manifest() {
6463
load_pnp_manifest("data/pnp-yarn-v3.cjs")
@@ -68,7 +67,6 @@ mod tests {
6867
.expect("Assertion failed: Expected to load the .pnp.cjs file generated by Yarn 4");
6968
}
7069

71-
#[cfg(not(target_os = "windows"))]
7270
#[test]
7371
fn test_resolve_unqualified() {
7472
let expectations_path = std::env::current_dir()

0 commit comments

Comments
 (0)