From: Heiko Schocher Date: Mon, 9 May 2016 08:08:24 +0000 (+0200) Subject: tests: py: fix NameError exception if bdi cmd is not supported X-Git-Tag: v2016.05~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b8218a9146814ad1dba0c21facddce9adca680ef;p=u-boot 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 Reviewed-by: Stephen Warren --- diff --git a/test/py/u_boot_utils.py b/test/py/u_boot_utils.py index 72d24e42aa..9d243e047b 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