Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #436 +/- ##
==========================================
+ Coverage 76.24% 76.27% +0.02%
==========================================
Files 53 53
Lines 9325 9336 +11
==========================================
+ Hits 7110 7121 +11
Misses 2215 2215 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
a329df7 to
455ce7e
Compare
455ce7e to
e26d8b1
Compare
Makes sense. Generally, this means a bug somewhere in qubesd. |
Most calls are going through As for |
After further investigation this is intentional - since this is a wrapper to access named field <prop_type>, it should indeed raise an AttributeError if the prop_type doesn't exist |
e26d8b1 to
fc1512a
Compare
|
You mean a case where property is declared but not set? Like for example |
|
Regarding the discussion about Can you confirm if there's any other open comments/... for this PR ? |
fc1512a to
ad7d6a0
Compare
|
In that case please remove the TODO comment about AttributeError |
ad7d6a0 to
7cc0bec
Compare
|
done |
|
should be okay now, but I'd like to wait for CI to become green first. |
Follows #416
Comments / Open questions
qubesd_callwe hadI was unable to find any case in which self.app could be None in the first place, so I removed it.
but
qubesd_callexpects a non-Nonedest. I had to add anassert dest is not None, but what prevents it from being None in the first place here ?Shouldn't we be returning a ValueError ?