From 71f303be33f30ba341c715509618fed4eb717a9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Fern=C3=A1ndez?= Date: Wed, 20 Dec 2023 10:41:16 +0100 Subject: [PATCH] Fix default-config.toml comment on `retry` semantics Did I understand wrong that after a retry if the test succeeds is marked as flakey? If so, should the text in the default-config.toml be as suggested by this PR? --- nextest-runner/default-config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextest-runner/default-config.toml b/nextest-runner/default-config.toml index 44cd16c240a..0ee6397fbf3 100644 --- a/nextest-runner/default-config.toml +++ b/nextest-runner/default-config.toml @@ -11,7 +11,7 @@ dir = "target/nextest" [profile.default] # "retries" defines the number of times a test should be retried. If set to a # non-zero value, tests that succeed on a subsequent attempt will be marked as -# non-flaky. Can be overridden through the `--retries` option. +# flaky. Can be overridden through the `--retries` option. # Examples # * retries = 3 # * retries = { backoff = "fixed", count = 2, delay = "1s" }