8000
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 bfeb569 commit fe5130bCopy full SHA for fe5130b
lib/matplotlib/tests/test_constrainedlayout.py
@@ -380,6 +380,11 @@ def test_constrained_layout23():
380
fig.suptitle("Suptitle{}".format(i))
381
382
383
+# This test occasionally fails the image comparison tests, so we mark as
384
+# flaky. Apparently the constraint solver occasionally doesn't fully
385
+# optimize. Would be nice if this were more deterministic...
386
+@pytest.mark.timeout(30)
387
+@pytest.mark.flaky(reruns=3)
388
@image_comparison(baseline_images=['test_colorbar_location'],
389
extensions=['png'], remove_text=True, style='mpl20')
390
def test_colorbar_location():
0 commit comments