[U-Boot] [PATCH v2] tests: py: fix NameError exception if bdi cmd is not supported

test/py raises an error, if a board has not enabled bdi command
pytest.skip('bdinfo command not supported')
E NameError: global name 'pytest' is not defined
import pytest in test/py/u_boot_utils.py fixes this.
Signed-off-by: Heiko Schocher hs@denx.de Reviewed-by: Stephen Warren swarren@nvidia.com --- found on the corvus board, which does not support this command. For interests: I integrated test/py into tbot, and catch test/py results, see as a demo: http://xeidos.ddns.net/tests/test_db_auslesen.php
Changes in v2: - add comment from Stephen Warren sort import statements
test/py/u_boot_utils.py | 1 + 1 file changed, 1 insertion(+)
diff --git a/test/py/u_boot_utils.py b/test/py/u_boot_utils.py index 72d24e4..9d243e0 100644 --- a/test/py/u_boot_utils.py +++ b/test/py/u_boot_utils.py @@ -7,6 +7,7 @@ import hashlib import os import os.path +import pytest import sys import time

On Mon, May 09, 2016 at 10:08:24AM +0200, Heiko Schocher wrote:
test/py raises an error, if a board has not enabled bdi command
pytest.skip('bdinfo command not supported')
E NameError: global name 'pytest' is not defined
import pytest in test/py/u_boot_utils.py fixes this.
Signed-off-by: Heiko Schocher hs@denx.de Reviewed-by: Stephen Warren swarren@nvidia.com
Applied to u-boot/master, thanks!
participants (2)
-
Heiko Schocher
-
Tom Rini