mirror of
https://github.com/nushell/nushell.git
synced 2025-06-10 03:56:49 +02:00
Disable flaky killing_job_kills_pids test on macOS (#15874)
# Description This test has failed a number of times specifically on macOS. I'm not exactly sure what the issue is, it seemed to work fine before. We should probably actually fix it, but flaky CI is worse than missing this one test on macOS cc @cosineblast
This commit is contained in:
parent
483974311d
commit
33303f083c
@ -285,7 +285,10 @@ fn killing_job_removes_it_from_table() {
|
||||
assert_eq!(actual.out, "[true, true, true, true]");
|
||||
}
|
||||
|
||||
// this test is unreliable on the macOS CI, but it worked fine for a couple months.
|
||||
// still works on other operating systems.
|
||||
#[test]
|
||||
#[cfg(not(target_os = "macos"))]
|
||||
fn killing_job_kills_pids() {
|
||||
let actual = nu!(format!(
|
||||
r#"
|
||||
|
Loading…
x
Reference in New Issue
Block a user