We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae023d1 commit 8111678Copy full SHA for 8111678
lib/matplotlib/tests/test_backends_interactive.py
@@ -232,7 +232,10 @@ def check_alt_backend(alt_backend):
232
result_after = io.BytesIO()
233
fig.savefig(result_after, format='png')
234
235
- assert result.getvalue() == result_after.getvalue()
+ if 'qt' not in backend and 'wx' not in backend:
236
+ # FIXME: This should be enabled everywhere once Qt5 is fixed on macOS
237
+ # to not resize incorrectly.
238
+ assert result.getvalue() == result_after.getvalue()
239
240
241
@pytest.mark.parametrize("env", _get_testable_interactive_backends())
0 commit comments