diff options
author | Tom Rini <trini@konsulko.com> | 2022-03-02 10:38:00 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-02 10:38:00 -0500 |
commit | f861ffa660dc47c4017c220b94d10a64439d46a7 (patch) | |
tree | 7ba56091d7713bf04e940afa9a2f8adcaeeb2a16 /test/py/tests/test_android/test_avb.py | |
parent | f9a719e2954473f9be1f8c14a28288f943a00dd2 (diff) | |
parent | 642e51addf918e0dd1b901efaa9f5706c12365b7 (diff) |
Merge branch '2022-03-02-enable-pylint-in-CI' into next
To quote the author:
This series adds a new errors-only pylint check and adds it to the CI
systems.
It also fixes the current errors in the U-Boot Python code, disabling
errors where it seems necessary.
A small patch to buildman allows it to build sandbox without any changes
to the default config file
Diffstat (limited to 'test/py/tests/test_android/test_avb.py')
-rw-r--r-- | test/py/tests/test_android/test_avb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_android/test_avb.py b/test/py/tests/test_android/test_avb.py index a04a7ff264c..a3f883136b0 100644 --- a/test/py/tests/test_android/test_avb.py +++ b/test/py/tests/test_android/test_avb.py @@ -66,7 +66,7 @@ def test_avb_mmc_uuid(u_boot_console): part_list[cur_partname] = guid_to_check[1] # lets check all guids with avb get_guid - for part, guid in part_list.iteritems(): + for part, guid in part_list.items(): avb_guid_resp = u_boot_console.run_command('avb get_uuid %s' % part) assert guid == avb_guid_resp.split('UUID: ')[1] |