summaryrefslogtreecommitdiffstats
path: root/test/units/module_utils/test_api.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ansible-galaxy - increase page size and add retry decorator for throttling ↵Sloane Hertel2021-05-101-6/+79
| | | | | | | | | | | | | | | | | | (#74240) * Get available collection versions with page_size=100 for v2 and limit=100 for v3 * Update unit tests for larger page sizes * Add a generic retry decorator in module_utils/api.py that accepts an Iterable of delays and a callable to determine if an exception inheriting from Exception should be retried * Use the new decorator to handle Galaxy API rate limiting * Add unit tests for new retry decorator * Preserve the decorated function's metadata with functools.wraps Co-authored-by: Matt Martz <matt@sivel.net> Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
* api: time.clock compatible code (#70650)Abhijeet Kasurde2020-07-161-0/+48
time.clock is removed in Python 3.8. Add time.clock compatible code. Fixes: #70649 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>