Skip to content

Commit

Permalink
Disable especially flaky test for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rklaehn committed Dec 14, 2023
1 parent 21e7cb1 commit bbc23b0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/cli.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#[cfg_attr(target_os = "windows", allow(dead_code))]
use rand::Rng;

use crate::node_ticket::NodeTicket;
Expand Down Expand Up @@ -212,7 +213,9 @@ fn connect_listen_ctrlc_listen() {
connect.read_to_end(&mut tmp).ok();
}

// TODO: figure out why this is flaky on windows
#[test]
#[cfg(unix)]
fn listen_tcp_happy() {
let b1 = wait2();
let b2 = b1.clone();
Expand Down

0 comments on commit bbc23b0

Please sign in to comment.