-
-
Notifications
You must be signed in to change notification settings - Fork 157
PR: Enable more tests on CI #434
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
I have hope that I found all test to uncomment. |
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 @Czaki for working on this! Checking seems like maybe there is just one more test which skip on linux could be removed:
qtpy/qtpy/tests/test_compat.py
Line 12 in 1874fba
(sys.platform.startswith('linux') and not_using_conda()), |
Other than that this LGTM π
However, just in case, what do you think @CAM-Gerlach and @ccordoba12 ?
I have removed it and all Linux test pass :) |
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.
Left a small question, otherwise looks good to me.
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 @Czaki for your help with this!
Merge (to unblock the second PR)? |
Sure, let's do it! I was waiting for @dalthviz, but since he's not available this week and this doesn't affect the library itself, I think it's fine to proceed. |
In this PR I have added installation of libs required by qt to setup
QApplication
. For this, I have usedtlambert03/setup-qt-libs@v1
. This action is used in few projects testing Qt (like napari) so if new Qt version requires some additional library it will be added without the need to make such a patch in all projects.