Skip to content

Commit

Permalink
chore: skip windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Ramos committed Oct 14, 2024
1 parent c884dad commit 4f2420e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/workspace_std/src/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ mod tests {
}

#[test]
#[cfg(not(windows))]
fn test_get_changed_packages() -> Result<(), std::io::Error> {
let monorepo = MonorepoWorkspace::new();
let root = monorepo.get_monorepo_root().clone();
Expand All @@ -375,11 +376,6 @@ mod tests {
let workspace = Workspace::new(root.clone());
let repo = Repository::new(root.as_path());

#[cfg(windows)]
let status = repo.status();
#[cfg(windows)]
println!("{:?}", status.unwrap());

let _ = repo.create_branch("feat/message");

let mut js_file = File::create(&js_path)?;
Expand Down

0 comments on commit 4f2420e

Please sign in to comment.