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