onionshare/tests_gui_local/run_unit_tests.sh

6 lines
93 B
Bash
Raw Normal View History

#!/bin/bash
for test in `ls -1 | egrep ^onionshare_`; do
2018-09-28 00:19:42 -04:00
pytest $test -vvv || exit 1
done