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 89abdaa

Browse filesBrowse files
committed
Backport PR #16870: Unbreak CI by xfailing wxAgg test on macOS
Merge pull request #16870 from timhoffm/xfail CI: Unbreak CI by xfailing wxAgg test on macOS Conflicts: lib/matplotlib/tests/test_backends_interactive.py - Other improvements to messages when skipping tests from bc155f0 near by. Did not implicitly backport other changes.
1 parent 2231cf8 commit 89abdaa
Copy full SHA for 89abdaa

File tree

Expand file treeCollapse file tree

1 file changed

+5
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+5
-0
lines changed

‎lib/matplotlib/tests/test_backends_interactive.py

Copy file name to clipboardExpand all lines: lib/matplotlib/tests/test_backends_interactive.py
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ def _get_testable_interactive_backends():
3535
if reason:
3636
backend = pytest.param(
3737
backend, marks=pytest.mark.skip(reason=reason))
38+
elif backend == 'wxagg' and sys.platform == 'darwin':
39+
# ignore on OSX because that's currently broken (github #16849)
40+
backend = pytest.param(
41+
backend,
42+
marks=pytest.mark.xfail(reason='github #16849'))
3843
backends.append(backend)
3944
return backends
4045

0 commit comments

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