mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +00:00
tests: mute both emulator and test in run_tests_python_trezor which were bloating the log extensively
This commit is contained in:
parent
e6d93c5933
commit
11154c1ab5
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user