-
-
Notifications
You must be signed in to change notification settings - Fork 116
Qubes Air: Introduce RemoteVM #668
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=2025041703-4.3&flavor=pull-requests 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 tests14 failures
Fixed failuresCompared to: https://openqa.qubes-os.org/tests/132953#dependencies 12 fixed
Unstable testsPerformance TestsPerformance degradation:14 performance degradations
Remaining performance tests:58 tests
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #668 +/- ##
==========================================
+ Coverage 70.12% 70.37% +0.24%
==========================================
Files 59 61 +2
Lines 12708 12898 +190
==========================================
+ Hits 8912 9077 +165
- Misses 3796 3821 +25
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
There are few stylistic issues, but otherwise looks good :)
@qubes.events.handler("domain-init", "domain-load") | ||
def on_domain_init_loaded(self, event): | ||
# pylint: disable=unused-argument | ||
if not hasattr(self, "uuid"): | ||
# pylint: disable=attribute-defined-outside-init | ||
self.uuid = uuid.uuid4() | ||
super().on_domain_init_loaded(event) |
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.
Since this only calls super now, it can be removed.
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.
Sorry, I missed you added uuid setting in the parent class. It was okay before...
QubesOS/qubes-issues/issues/9015