1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/tests/run_tests_python_trezor.sh
Pavol Rusnak 918150a3f1
tests: make testpy tries running selected tests from python-trezor
apps.ethereum: fix get address call
2016-11-24 17:16:40 +01:00

42 lines
715 B
Bash
Executable File

#!/bin/bash
if [ -d python-trezor ]; then
cd python-trezor ; git pull ; cd ..
else
git clone https://github.com/trezor/python-trezor.git
fi
# run emulator
cd ../src
../vendor/micropython/unix/micropython -O0 main.py &
UPY_PID=$!
sleep 1
cd ../tests/python-trezor/tests
export PYTHONPATH=".."
error=0
for i in \
test_msg_cipherkeyvalue.py \
test_msg_estimatetxsize.py \
test_msg_ethereum_getaddress.py \
test_msg_getaddress.py \
test_msg_getpublickey.py \
test_msg_signmessage.py \
test_msg_signtx.py \
test_msg_verifymessage.py \
; do
if ! python2 $i ; then
error=1
break
fi
done
# kill emulator
kill $UPY_PID
exit $error