Test that packagekit works via proxy - #856
Conversation
https://github.com/QubesOS/openqa-tests-qubesos/blob/main/extra-files/system-tests/vm.sls |
af826e7 to
ae51232
Compare
ae51232 to
e128096
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #856 +/- ##
=======================================
Coverage 70.30% 70.30%
=======================================
Files 61 61
Lines 14149 14149
=======================================
Hits 9948 9948
Misses 4201 4201
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
| # install test package | ||
| self.assertRunCommandReturnCode( | ||
| self.testvm1, "pkcon install -y test-pkg", self.ret_code_ok | ||
| ) |
There was a problem hiding this comment.
I think this wants a final check if the package really got installed, similar to the other test:
# verify if it was really installed
self.assertRunCommandReturnCode(
self.testvm1,
self.install_test_cmd.format("test-pkg"),
self.ret_code_ok,
)
OpenQA test summaryComplete test suite and dependencies: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2026073102-devel&flavor=pull-requests Test run included the following:
Upload failures
New failures, excluding unstableCompared to: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2026050504-devel&flavor=update
Failed tests16 failures
Fixed failuresCompared to: https://openqa.qubes-os.org/tests/176874#dependencies 21 fixed
Unstable testsDetails
Performance TestsPerformance degradation:22 performance degradations
Remaining performance tests:89 tests
|
Here is the requested test.
Packagekit still needs to be installed in the template before the test. Should it be installed in the test function or somewhere else?
I'm also not sure about the right location to place the test, or test number.