-
-
Notifications
You must be signed in to change notification settings - Fork 69
Enable qInfo tests for PySide6 #593
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
PySide6 now exposes `qInfo` just like Qt6. This enables the `qInfo` tests accordingly. For reference see issue pytest-dev#232.
Some additional info: I noticed |
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.
Awesome, thanks! Appreciate it!
qInfo() has been added: https://codereview.qt-project.org/c/pyside/pyside-setup/+/605100 Follow-up / alternative to #593 without breaking compatibility with older PySide6 versions. See #232.
qInfo() has been added: https://codereview.qt-project.org/c/pyside/pyside-setup/+/605100 Follow-up / alternative to #593 without breaking compatibility with older PySide6 versions. See #232.
This breaks compatibility with PySide6 < 6.8.2. Reverted and pushed an alternative fix in #597. |
qInfo() has been added: https://codereview.qt-project.org/c/pyside/pyside-setup/+/605100 Follow-up / alternative to #593 without breaking compatibility with older PySide6 versions. See #232.
PySide6 now exposes
qInfo
just like Qt6. This enables theqInfo
tests accordingly.
For reference see issue #232.