TST: Add future dependency tests as a weekly CI job by greglucas · Pull Request #21634 · matplotlib/matplotlib · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/tests.yml
2 changes: 2 additions & 0 deletions lib/matplotlib/tests/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3438,6 +3438,8 @@ def test_errorbar():
ax.errorbar(x, y, yerr=[yerr_lower, 2*yerr], xerr=xerr,
fmt='o', ecolor='g', capthick=2)
ax.set_title('Mixed sym., log y')
# Force limits due to floating point slop potentially expanding the range
ax.set_ylim(1e-2, 1e1)

fig.suptitle('Variable errorbars')

Expand Down
7 changes: 4 additions & 3 deletions lib/matplotlib/tests/test_colors.py