Skip to content

Commit 4d6568c

Browse files
committed
TST: forgive more failures on pyside2 / pyside6 cross imports
closes matplotlib#23004
1 parent f25c2d0 commit 4d6568c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/matplotlib/tests/test_backends_interactive.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,10 @@ def test_cross_Qt_imports():
359359
# are doing something that we do not expect to work
360360
if ex.returncode == -11:
361361
continue
362+
# We got the abort signal which is likely because the Qt5 /
363+
# Qt6 cross import is unhappy, carry on.
364+
elif ex.returncode == -6:
365+
continue
362366
raise
363367

364368

0 commit comments

Comments
 (0)