Skip to content

Commit 7c7f94c

Browse files
authored
TST: Fix minor issues in interactive backend test (matplotlib#28838)
- Close the figure immediately, to avoid the deprecation warning about automatically closing figure when changing backends. This test doesn't intend to test the warning, just the change behaviour itself. - Enable the post-`show()` result check everywhere. The comment implies it should only be skipped on `(macOS and Qt5)`, but the condition is actually only enabled on `macOS and (not Qt5)`.
1 parent 24c5048 commit 7c7f94c

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

lib/matplotlib/tests/test_backends_interactive.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ def _test_interactive_impl():
170170

171171
if backend.endswith("agg") and not backend.startswith(("gtk", "web")):
172172
# Force interactive framework setup.
173-
plt.figure()
173+
fig = plt.figure()
174+
plt.close(fig)
174175

175176
# Check that we cannot switch to a backend using another interactive
176177
# framework, but can switch to a backend using cairo instead of agg,
@@ -228,10 +229,7 @@ def check_alt_backend(alt_backend):
228229
result_after = io.BytesIO()
229230
fig.savefig(result_after, format='png')
230231

231-
if not backend.startswith('qt5') and sys.platform == 'darwin':
232-
# FIXME: This should be enabled everywhere once Qt5 is fixed on macOS
233-
# to not resize incorrectly.
234-
assert result.getvalue() == result_after.getvalue()
232+
assert result.getvalue() == result_after.getvalue()
235233

236234

237235
@pytest.mark.parametrize("env", _get_testable_interactive_backends())
@@ -448,8 +446,7 @@ def qt5_and_qt6_pairs():
448446

449447
for qt5 in qt5_bindings:
450448
for qt6 in qt6_bindings:
451-
for pair in ([qt5, qt6], [qt6, qt5]):
452-
yield pair
449+
yield from ([qt5, qt6], [qt6, qt5])
453450

454451

455452
@pytest.mark.parametrize('host, mpl', [*qt5_and_qt6_pairs()])

0 commit comments

Comments
 (0)