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
1 changed files with 4 additions and 4 deletions

View File

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