8000 Merge pull request #22987 from tacaswell/ci_bump_osxtkagg_limit · matplotlib/matplotlib@357276b · GitHub
[go: up one dir, main page]

Skip to content

Commit 357276b

Browse files
authored
Merge pull request #22987 from tacaswell/ci_bump_osxtkagg_limit
CI: bump test limit from tkagg on osx
2 parents 4db5321 + 4004d1f commit 357276b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/matplotlib/tests/test_backends_interactive.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,9 @@ def test_figure_leak_20490(env, time_mem):
548548
# We haven't yet directly identified the leaks so test with a memory growth
549549
# threshold.
550550
pause_time, acceptable_memory_leakage = time_mem
551-
if env["MPLBACKEND"] == "macosx":
551+
if env["MPLBACKEND"] == "macosx" or (
552+
env["MPLBACKEND"] == "tkagg" and sys.platform == 'darwin'
553+
):
552554
acceptable_memory_leakage += 11_000_000
553555

554556
result = _run_helper(

0 commit comments

Comments
 (0)
0