Skip to content

Commit

Permalink
Merge pull request #475 from Nukesor/ignore-flaky-test
Browse files Browse the repository at this point in the history
fix: Temporarily ignore flaky mac-os test
  • Loading branch information
Nukesor authored Nov 23, 2023
2 parents 059c648 + 0fecc08 commit 31edbec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pueue/tests/client/integration/follow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ async fn fail_on_non_existing(#[case] read_local_logs: bool) -> Result<()> {
}

/// Fail and print an error message when following a non-existing task disappears
#[cfg(not(target = "x86_64-apple-darwin"))]
#[rstest]
#[case(true)]
#[case(false)]
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
#[cfg_attr(target = "x86_64-apple-darwin", ignore)]
async fn fail_on_disappearing(#[case] read_local_logs: bool) -> Result<()> {
let mut daemon = daemon().await?;
set_read_local_logs(&mut daemon, read_local_logs)?;
Expand Down

0 comments on commit 31edbec

Please sign in to comment.