Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2d653cf

Browse files
committedMar 28, 2024·
fix: mark flaky tests as flaky
1 parent eca68a4 commit 2d653cf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎tests/cli.rs

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ fn connect_listen_happy() {
9090
/// Connect and listen both write a limited amount of data and then EOF.
9191
/// The interaction should stop when both sides have EOF'd.
9292
#[test]
93+
#[ignore = "flaky"]
9394
fn connect_listen_custom_alpn_happy() {
9495
// the bytes provided by the listen command
9596
let listen_to_connect = b"hello from listen";
@@ -214,6 +215,7 @@ fn connect_listen_ctrlc_listen() {
214215
// TODO: figure out why this is flaky on windows
215216
#[test]
216217
#[cfg(unix)]
218+
#[ignore = "flaky"]
217219
fn listen_tcp_happy() {
218220
let b1 = wait2();
219221
let b2 = b1.clone();

0 commit comments

Comments
 (0)
Please sign in to comment.