Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1b09b0f

Browse files
committed
CI: remove xfail on OSX + tk due to issues in image
1 parent 9a834ad commit 1b09b0f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

lib/matplotlib/tests/test_backends_interactive.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,7 @@ def _get_available_interactive_backends():
107107
elif env["MPLBACKEND"].startswith('wx') and sys.platform == 'darwin':
108108
# ignore on macosx because that's currently broken (github #16849)
109109
marks.append(pytest.mark.xfail(reason='github #16849'))
110-
elif (env['MPLBACKEND'] == 'tkagg' and
111-
('TF_BUILD' in os.environ or 'GITHUB_ACTION' in os.environ) and
112-
sys.platform == 'darwin' and
113-
sys.version_info[:2] < (3, 11)
114-
):
115-
marks.append( # https://github.com/actions/setup-python/issues/649
116-
pytest.mark.xfail(reason='Tk version mismatch on Azure macOS CI'))
110+
117111
envs.append(({**env, 'BACKEND_DEPS': ','.join(deps)}, marks))
118112
return envs
119113

0 commit comments

Comments
 (0)