From 7e6621a1cae2d2442d3d7641ff1df17b3f03ad4b Mon Sep 17 00:00:00 2001 From: Heiko Schocher Date: Fri, 6 May 2016 07:33:51 +0200 Subject: test/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 Reviewed-by: Stephen Warren --- test/py/u_boot_utils.py | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/py/u_boot_utils.py b/test/py/u_boot_utils.py index 9d243e047b..6a6b2ec0e6 100644 --- a/test/py/u_boot_utils.py +++ b/test/py/u_boot_utils.py @@ -10,6 +10,7 @@ import os.path import pytest import sys import time +import pytest def md5sum_data(data): """Calculate the MD5 hash of some data. -- cgit v1.2.1