We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9487bd commit 474d925Copy full SHA for 474d925
test/common.py
@@ -246,7 +246,7 @@ def modified(*args, **kwargs):
246
for i in range(EMTEST_RETRY_FLAKY):
247
try:
248
return f(*args, **kwargs)
249
- except AssertionError as exc:
+ except (AssertionError, subprocess.TimeoutExpired) as exc:
250
preserved_exc = exc
251
logging.info(f'Retrying flaky test "{f.__name__}" (attempt {i}/{EMTEST_RETRY_FLAKY} failed): {exc}')
252
# Mark down that this was a flaky test.
0 commit comments