mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 21:22:10 +00:00
6 lines
81 B
Bash
6 lines
81 B
Bash
|
#!/bin/bash
|
||
|
for i in test_*.py; do
|
||
|
echo Starting: $i
|
||
|
python $i > $i.out
|
||
|
done
|