-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
TST: forgive more failures on pyside2 / pyside6 cross imports #23069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -359,6 +359,10 @@ def test_cross_Qt_imports(): | |||
# are doing something that we do not expect to work | |||
if ex.returncode == -11: | |||
continue | |||
# We got the abort signal which is likely because the Qt5 / | |||
# Qt6 cross import is unhappy, carry on. | |||
elif ex.returncode == -6: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perhaps == -signal.SIGABRT
here (and likewise -signal.SIGSEGV
just above)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
Thanks, tested locally and confirmed it obviously work. ;) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
postci
I don't know why Ubuntu started failing now. |
I looked at this yesterday and it looks like issues counting fonts (?!) The test does something funny where it does a |
I noticed it was passing on another PR, so I restarted them and it's all magically working again. |
… pyside6 cross imports
…069-on-v3.5.x Backport PR #23069 on branch v3.5.x (TST: forgive more failures on pyside2 / pyside6 cross imports)
PR Summary
closes #23004
This is testing that we warn something is a bad idea and failing because it is indeed a bad idea.
PR Checklist
Tests and Styling
pytest
passes).flake8-docstrings
and runflake8 --docstring-convention=all
).