trezor-core/tests/run_tests_device_emu.sh

23 lines
428 B
Bash
Raw Normal View History

#!/bin/bash
MICROPYTHON=../build/unix/micropython
PYOPT=0
# run emulator
cd ../src
$MICROPYTHON -O$PYOPT main.py >/dev/null &
upy_pid=$!
sleep 1
# run tests
cd ../tests
2017-10-31 05:55:51 -07:00
error=0
2017-12-19 10:32:07 -08:00
if ! TREZOR_TRANSPORT_V1=0 pytest -k 'not skip_t2' --pyargs trezorlib.tests.device_tests ; then
2017-10-31 05:55:51 -07:00
error=1
fi
2017-12-19 10:32:07 -08:00
if ! TREZOR_TRANSPORT_V1=1 pytest -k 'not skip_t2' --pyargs trezorlib.tests.device_tests ; then
2017-10-31 05:55:51 -07:00
error=1
fi
kill $upy_pid
exit $error