8000 TST: skip wx backend · matplotlib/matplotlib@0ccc19e · GitHub
[go: up one dir, main page]

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 0ccc19e

Browse files
committed
TST: skip wx backend
It seems to have a bug where `plt.show` hangs when the window is closed.
1 parent 22508d8 commit 0ccc19e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/tests/test_backends_interactive.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ def _get_testable_interactive_backends():
2222
(["cairocffi", "pgi"], "gtk3cairo"),
2323
(["PyQt5"], "qt5agg"),
2424
(["tkinter"], "tkagg"),
25-
(["wx"], "wx"),
26-
(["wx"], "wxagg")]:
25+
# (["wx"], "wx"),
26+
(["wx"], "wxagg")
27+
]:
2728
reason = None
2829
if not os.environ.get("DISPLAY"):
2930
reason = "No $DISPLAY"

0 commit comments

Comments
 (0)
0