-
Notifications
You must be signed in to change notification settings - Fork 31
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
Add more tests #195
Add more tests #195
Conversation
I reviewed all PR, issues and commit since the beginning of the projects. I tried to add tests for most things which were actually changed during this lifetime, with the exception of signals and enum which are handled by automation scripts. The idea for me is to capture all user contributions into the test suite, which can serve as a basis for other pyqt-stubs projects. |
Ready to be merged |
tests/pyqtsignal.py
Outdated
connection = instance.signal.connect(instance.my_slot) | ||
instance.signal.disconnect() | ||
connection = instance.signal.connect(instance.my_slot) | ||
instance.signal.disconnect(connection) |
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.
Trailing EOL.
Restore the original order Co-authored-by: Kyle Altendorf <[email protected]>
use the same order for all comparisons Co-authored-by: Kyle Altendorf <[email protected]>
@altendky do you want to review the changes after your review ? I believe this is ready to be merged. |
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.
Thanks for the continued work on this.
No description provided.