Return the set of all text in the figure
()
| 85 | @pytest.mark.flaky |
| 86 | @pytest.mark.skip(reason="maybe flaky") |
| 87 | def text_in_fig() -> set[str]: |
| 88 | """ |
| 89 | Return the set of all text in the figure |
| 90 | """ |
| 91 | return {t.get_text() for t in plt.gcf().findobj(mpl.text.Text)} |
| 92 | |
| 93 | |
| 94 | def find_possible_colorbars() -> list[mpl.collections.QuadMesh]: |
no outgoing calls
no test coverage detected
searching dependent graphs…