-
Notifications
You must be signed in to change notification settings - Fork 32
Use glib's native asyncio integration when available #208
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
OpenQA test summaryComplete test suite and dependencies: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2025052900-4.3-fedora&flavor=templates Test run included the following:
New failures, excluding unstableCompared to: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2025031804-4.3&flavor=update
Failed tests2 failures
Fixed failuresCompared to: https://openqa.qubes-os.org/tests/132953#dependencies 5 fixed
Unstable tests
Performance TestsPerformance degradation:No issues Remaining performance tests:No remaining performance tests |
Glib >= 3.50 has native asyncio integration. When available, use it instead of gbulb. This requires few minor changes: - asyncio.run() doesn't work there (asyncio.set_event_loop() cannot be called on the main thread with glib...) - there is no gbulb.wait_signal() anymore - implement it manually Based on QubesOS#191 by @CertainLach QubesOS/qubes-issues#9809
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #208 +/- ##
==========================================
- Coverage 79.01% 78.90% -0.12%
==========================================
Files 55 55
Lines 10508 10519 +11
==========================================
- Hits 8303 8300 -3
- Misses 2205 2219 +14 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Glib >= 3.50 has native asyncio integration. When available, use it
instead of gbulb.
This requires few minor changes:
called on the main thread with glib...)
Based on #191 by
@CertainLach
QubesOS/qubes-issues#9809