mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 09:21:13 +08:00
mandelbrot.py: Commenting out long running tests (#5558)
* mandelbrot.py: Commenting out long running tests * updating DIRECTORY.md * Comment out 9 sec doctests * Update bidirectional_breadth_first_search.py * Comment out slow tests * Comment out slow (9.15 sec) pytests... * # Comment out slow (4.20s call) doctests * Comment out slow (3.45s) doctests * Update miller_rabin.py * Update miller_rabin.py Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -24,9 +24,10 @@ def download_images_from_google_query(query: str = "dhaka", max_images: int = 5)
|
||||
Returns:
|
||||
The number of images successfully downloaded.
|
||||
|
||||
>>> download_images_from_google_query()
|
||||
# Comment out slow (4.20s call) doctests
|
||||
# >>> download_images_from_google_query()
|
||||
5
|
||||
>>> download_images_from_google_query("potato")
|
||||
# >>> download_images_from_google_query("potato")
|
||||
5
|
||||
"""
|
||||
max_images = min(max_images, 50) # Prevent abuse!
|
||||
|
Reference in New Issue
Block a user