Skip to content

Commit

Permalink
tests: Disable flaky tests on windowns again (#2267)
Browse files Browse the repository at this point in the history
## Description

This reverts commit 93bcaa5.

Re-opens #2086

## Breaking Changes

<!-- Optional, if there are any breaking changes document them,
including how to migrate older code. -->

## Notes & open questions

<!-- Any notes, remarks or open questions you have to make about the PR.
-->

## Change checklist

- [x] Self-review.
- [x] Documentation updates if relevant.
- [x] Tests if relevant.
- [x] All breaking changes documented.
  • Loading branch information
flub authored May 6, 2024
1 parent 302fea4 commit 6cc12d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions iroh-net/src/dns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ pub(crate) mod tests {
use super::*;

#[tokio::test]
#[cfg_attr(target_os = "windows", ignore = "flaky")]
async fn test_dns_lookup_basic() {
let _logging = iroh_test::logging::setup();
let resolver = default_resolver();
Expand All @@ -165,6 +166,7 @@ pub(crate) mod tests {
}

#[tokio::test]
#[cfg_attr(target_os = "windows", ignore = "flaky")]
async fn test_dns_lookup_ipv4_ipv6() {
let _logging = iroh_test::logging::setup();
let resolver = default_resolver();
Expand Down

0 comments on commit 6cc12d8

Please sign in to comment.