1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 02:19:21 +00:00
trezor-firmware/script/test

20 lines
386 B
Plaintext
Raw Normal View History

2017-12-17 16:00:32 +00:00
#!/bin/bash
# script/test: Run test suite for application.
set -e
cd "$(dirname "$0")/.."
2017-12-18 21:44:50 +00:00
if [ "$EMULATOR" = 1 ]; then
trap "kill %1" EXIT
2017-12-17 16:00:32 +00:00
firmware/trezor.elf &
sleep 1
export TREZOR_PATH=udp:127.0.0.1:21324
"${PYTHON:-python}" script/wait_for_emulator.py
2017-12-17 16:00:32 +00:00
fi
export TREZOR_TRANSPORT_V1=1
"${PYTHON:-python}" -m pytest --pyarg trezorlib.tests.device_tests "$@"