From 1e529c5253c0d4f0edb045acb1ac87f06a57f86c Mon Sep 17 00:00:00 2001 From: Zanie Date: Fri, 26 Jan 2024 14:20:34 -0600 Subject: [PATCH] Drop retries for flaking tests --- .config/nextest.toml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index e3a8de680..01d7536c4 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,13 +1,3 @@ [profile.default] # Mark tests that take longer than 10s as slow slow-timeout = "10s" - -[[profile.default.overrides]] -# Some of these tests have a non-determinstic snapshot -filter = 'binary(pip_install_scenarios)' -retries = 2 - -[[profile.no-retry.overrides]] -# An optional profile to avoid retries -filter = 'binary(pip_install_scenarios)' -retries = 0