1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-09 15:00:58 +00:00

tests: mute both emulator and test in run_tests_python_trezor which were bloating the log extensively

This commit is contained in:
Pavol Rusnak 2017-05-08 18:11:03 +02:00
parent e6d93c5933
commit 11154c1ab5
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -9,7 +9,7 @@ fi
# run emulator # run emulator
cd ../src cd ../src
../vendor/micropython/unix/micropython -O0 main.py & ../vendor/micropython/unix/micropython -O0 main.py >/dev/null &
UPY_PID=$! UPY_PID=$!
sleep 1 sleep 1
@ -21,7 +21,7 @@ error=0
PYTHON="${PYTHON:-python2}" PYTHON="${PYTHON:-python2}"
''' : '
not passing: not passing:
test_bip32_speed.py test_bip32_speed.py
@ -42,7 +42,7 @@ not passing:
test_multisig.py test_multisig.py
test_protect_call.py test_protect_call.py
test_protection_levels.py test_protection_levels.py
''' '
for i in \ for i in \
test_basic.py \ test_basic.py \
@ -60,7 +60,7 @@ for i in \
test_zerosig.py \ test_zerosig.py \
; do ; do
if $PYTHON $i; then if $PYTHON $i >/dev/null 2>/dev/null ; then
results+=("OK $i") results+=("OK $i")
else else
results+=("FAIL $i") results+=("FAIL $i")