1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-15 12:08:59 +00:00

add run-separate.sh script

This commit is contained in:
Pavol Rusnak 2014-06-11 19:56:19 +02:00
parent f17f7d0569
commit c38f4346f6

5
tests/run-separate.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
for i in test_*.py; do
echo Starting: $i
python $i > $i.out
done