1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

tests: fix python-trezor tests

This commit is contained in:
Jan Pochyla 2016-12-08 16:31:25 +01:00
parent 3e1b821b3c
commit b297083e5d

View File

@ -14,11 +14,13 @@ UPY_PID=$!
sleep 1
cd ../tests/python-trezor/tests
export PYTHONPATH=".."
cd ../tests/python-trezor/tests/device_tests
export PYTHONPATH="../.."
error=0
PYTHON="${PYTHON:-python2}"
for i in \
test_msg_cipherkeyvalue.py \
test_msg_estimatetxsize.py \
@ -29,7 +31,7 @@ for i in \
test_msg_signtx.py \
test_msg_verifymessage.py \
; do
if ! python2 $i ; then
if ! $PYTHON $i ; then
error=1
break
fi