fix(tests): ensure fwupdmgr don't fail even if the target does not support firmware update.

This commit is contained in:
Alexandre Pujol 2024-11-21 19:15:56 +00:00 committed by nobody43
parent 30860ad401
commit 70497e77a3

View file

@ -10,14 +10,14 @@ load common
}
@test "fwupdmgr: Download the latest firmware metadata from LVFS" {
fwupdmgr refresh
fwupdmgr refresh || true
}
@test "fwupdmgr: List the updates available for devices on your system" {
fwupdmgr get-updates
fwupdmgr get-updates || true
}
@test "fwupdmgr: Install firmware updates" {
fwupdmgr update
fwupdmgr update || true
}