Lines Matching full:retry
5 """Unit tests for client/common_lib/cros/retry.py."""
15 from autotest_lib.client.common_lib.cros import retry
20 """Unit tests for retry decorators.
41 @retry.retry(Exception)
48 """Test that a wrapped function can retry and succeed."""
52 @retry.retry(Exception, delay_sec=delay_sec)
65 @retry.retry(Exception, delay_sec=delay_sec)
71 """Test that dynamic_suite exceptions raise immediately, no retry."""
72 @retry.retry(Exception)
79 """Unit tests for retry decorators with real sleep."""
83 @retry.retry(Exception, timeout_min=0.02, delay_sec=0.1)
91 @retry.retry(Exception, timeout_min=0.02, delay_sec=0.1)
104 @retry.retry(Exception, timeout_min=0.05, delay_sec=0.1)
125 @retry.retry(Exception, timeout_min=0.06, delay_sec=0.1)