Skip to content

Commit

Permalink
Disable all serve tests for Windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Keats committed Jun 24, 2024
1 parent b97f8a1 commit 041da02
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cmd/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,7 @@ mod tests {
}

#[test]
#[cfg(not(windows))]
fn test_create_new_site_without_protocol_with_port_without_mounted_path() {
let interface = IpAddr::from_str("127.0.0.1").unwrap();
let interface_port = 1111;
Expand All @@ -942,6 +943,7 @@ mod tests {
}

#[test]
#[cfg(not(windows))]
fn test_create_new_site_without_protocol_with_port_with_mounted_path() {
let interface = IpAddr::from_str("127.0.0.1").unwrap();
let interface_port = 1111;
Expand All @@ -963,6 +965,7 @@ mod tests {
}

#[test]
#[cfg(not(windows))]
fn test_create_new_site_without_protocol_without_port_without_mounted_path() {
let interface = IpAddr::from_str("127.0.0.1").unwrap();
let interface_port = 1111;
Expand All @@ -986,6 +989,7 @@ mod tests {
}

#[test]
#[cfg(not(windows))]
fn test_create_new_site_with_protocol_without_port_without_mounted_path() {
let interface = IpAddr::from_str("127.0.0.1").unwrap();
let interface_port = 1111;
Expand Down

0 comments on commit 041da02

Please sign in to comment.