-
Notifications
You must be signed in to change notification settings - Fork 6
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
Don't use StringEnum
subclasses over Qt Signal definition
#104
Conversation
StringEnum
subclasses over Qt Signal definitionStringEnum
subclasses over Qt Signal definition
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #104 +/- ##
==========================================
- Coverage 93.57% 93.52% -0.06%
==========================================
Files 10 10
Lines 1822 1822
==========================================
- Hits 1705 1704 -1
- Misses 117 118 +1 ☔ View full report in Codecov by Sentry. |
LGTM, but is there a way we can test this breakage? We didn't catch this bad crash before. |
The thing that was causing the tests to not fail was that the validation that skipped the whole With the change done, now the module gets skipped only when actually is necessary (when using Python >3.10 and PySide2). This skip is needed since there are no wheels for PySide2 5.15 for Python >3.10. Trying to install PySide2 causes PySide2 5.13 to be installed with Python >=3.11 and that comes with some issues. I also checked that reverting the
|
Amazing sleuthing as always @dalthviz |
Ok, thank you so much for the detailed explanation. Always a pleasure, let's merge this one. |
Closes #94
Closes #103