From 3ba97bc3b763f6d886dd0b6678ba0c6744198150 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Tue, 8 Apr 2025 11:15:31 -0400 Subject: [PATCH] Fix CI flakes (#7491) --- .config/nextest.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 5a6b918d0..5295fbb5d 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -26,6 +26,10 @@ threads-required = 8 # https://github.com/gfx-rs/wgpu/issues/7200 [[profile.default.overrides]] -filter = 'test(wgpu_gpu_test::image_atomics::image_32_atomics)' +filter = 'test(wgpu_gpu::image_atomics::image_32_atomics)' platform = 'cfg(target_vendor = "apple")' retries = 1 + +[[profile.default.overrides]] +filter = 'test(compile_fail)' +slow-timeout = { period = "3m", terminate-after = 2 }