Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e2131bb

Browse filesBrowse files
committed
Just skip memleak test on windows entirely
1 parent 51b8989 commit e2131bb
Copy full SHA for e2131bb

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎lib/matplotlib/tests/test_backends_interactive.py

Copy file name to clipboardExpand all lines: lib/matplotlib/tests/test_backends_interactive.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,8 @@ def _test_figure_leak():
562562

563563

564564
# TODO: "0.1" memory threshold could be reduced 10x by fixing tkagg
565+
@pytest.mark.skipif(sys.platform == "win32",
566+
reason="appveyor tests fail; gh-22988 suggests reworking")
565567
@pytest.mark.parametrize("env", _get_testable_interactive_backends())
566568
@pytest.mark.parametrize("time_mem", [(0.0, 2_000_000), (0.1, 30_000_000)])
567569
def test_figure_leak_20490(env, time_mem):
@@ -572,8 +574,6 @@ def test_figure_leak_20490(env, time_mem):
572574
pause_time, acceptable_memory_leakage = time_mem
573575
if env["MPLBACKEND"] == "wx":
574576
pytest.skip("wx backend is deprecated; tests failed on appveyor")
575-
if env["MPLBACKEND"] == "wxagg" and sys.platform == "win32":
576-
pytest.skip("tests failed on appveyor")
577577

578578
if env["MPLBACKEND"] == "macosx" or (
579579
env["MPLBACKEND"] == "tkagg" and sys.platform == 'darwin'

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.