mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +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:
@ -101,9 +101,11 @@ def get_image(
|
||||
of the Mandelbrot set is viewed. The main area of the Mandelbrot set is
|
||||
roughly between "-1.5 < x < 0.5" and "-1 < y < 1" in the figure-coordinates.
|
||||
|
||||
>>> get_image().load()[0,0]
|
||||
Commenting out tests that slow down pytest...
|
||||
# 13.35s call fractals/mandelbrot.py::mandelbrot.get_image
|
||||
# >>> get_image().load()[0,0]
|
||||
(255, 0, 0)
|
||||
>>> get_image(use_distance_color_coding = False).load()[0,0]
|
||||
# >>> get_image(use_distance_color_coding = False).load()[0,0]
|
||||
(255, 255, 255)
|
||||
"""
|
||||
img = Image.new("RGB", (image_width, image_height))
|
||||
|
Reference in New Issue
Block a user