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
parent 2332f71b17
commit ffd6ecba5b
Failed to generate hash of commit

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
}