From a6a5894901e717282e05e915b46dfd96ee3df045 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 18 Jan 2024 23:53:12 -0600 Subject: [PATCH] Add nextest config for retry of flaky test (#996) We should definitely sort this out per #863 but until then I want to stop getting false reports of failed CI please and this seems better than turning off the test entirely. Alternatively #993 --- .config/nextest.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .config/nextest.toml diff --git a/.config/nextest.toml b/.config/nextest.toml new file mode 100644 index 000000000..c48e7bbfe --- /dev/null +++ b/.config/nextest.toml @@ -0,0 +1,8 @@ +[profile.default] +# Mark tests that take longer than 10s as slow +slow-timeout = "10s" + +[[profile.default.overrides]] +# The following test has a non-determinstic snapshot +filter = 'test(excluded_only_compatible_version|dependency_excludes_range_of_compatible_versions)' +retries = 3