diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-30 21:25:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 21:25:15 +0100 |
commit | 3922ceda03436464b4d04f957c43179772c40a3c (patch) | |
tree | 05a2e7b42563324dd4e216a6d9fa6dab56281907 /cli/tests/integration/watcher_tests.rs | |
parent | 207dd8d111303f02b92d632ca00c165a657bc9c2 (diff) |
test: disable run_watch_external_watch_files on macOS (#16477)
This test has hung a lot recently on macOS. I am not sure if this is
because of a bug in the test or because of the macOS runner that is extremely
slow and flaky in general.
Diffstat (limited to 'cli/tests/integration/watcher_tests.rs')
-rw-r--r-- | cli/tests/integration/watcher_tests.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/integration/watcher_tests.rs b/cli/tests/integration/watcher_tests.rs index efc1b186b..58f7e11fa 100644 --- a/cli/tests/integration/watcher_tests.rs +++ b/cli/tests/integration/watcher_tests.rs @@ -582,6 +582,10 @@ fn run_watch_no_dynamic() { check_alive_then_kill(child); } +// TODO(bartlomieju): this test became flaky on macOS runner; it is unclear +// if that's because of a bug in code or the runner itself. We should reenable +// it once we upgrade to XL runners for macOS. +#[cfg(not(target_os = "macos"))] #[test] fn run_watch_external_watch_files() { let t = TempDir::new(); |