()
| 71 | |
| 72 | |
| 73 | def test_marker_with_nan(): |
| 74 | # This creates a marker with nans in it, which was segfaulting the |
| 75 | # Agg backend (see #3722) |
| 76 | fig, ax = plt.subplots(1) |
| 77 | steps = 1000 |
| 78 | data = np.arange(steps) |
| 79 | ax.semilogx(data) |
| 80 | ax.fill_between(data, data*0.8, data*1.2) |
| 81 | buf = io.BytesIO() |
| 82 | fig.savefig(buf, format='png') |
| 83 | |
| 84 | |
| 85 | def test_long_path(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…