aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-01 13:08:26 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-01 13:08:26 +0200
commitfa759d7ae5d46c702a8a927669bf83648877fbfb (patch)
treecffb9fea3aa4c3dc05b1b1569f2b7d84265eb751
parentc073e43488dccdd94a078d28e8b2c0d6c2008acf (diff)
auto_set_flakes also reruns tests that timeout
-rwxr-xr-xtools/run_tests/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 50eed6256c..106c7e0699 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -144,7 +144,7 @@ class Config(object):
cpu_cost=cpu_cost,
timeout_seconds=(self.timeout_multiplier * timeout_seconds if timeout_seconds else None),
flake_retries=5 if flaky or args.allow_flakes else 0,
- timeout_retries=3 if args.allow_flakes else 0)
+ timeout_retries=3 if flaky or args.allow_flakes else 0)
def get_c_tests(travis, test_lang) :