()
| 9917 | |
| 9918 | |
| 9919 | def test_ecdf_invalid(): |
| 9920 | with pytest.raises(ValueError): |
| 9921 | plt.ecdf([1, np.nan]) |
| 9922 | with pytest.raises(ValueError): |
| 9923 | plt.ecdf(np.ma.array([1, 2], mask=[True, False])) |
| 9924 | |
| 9925 | |
| 9926 | def test_fill_between_axes_limits(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…