onionshare/tests_gui_tor/run_unit_tests.sh

6 lines
93 B
Bash
Raw Normal View History

2018-09-27 17:33:15 +10:00
#!/bin/bash
for test in `ls -1 | egrep ^onionshare_`; do
2018-09-27 21:19:42 -07:00
pytest $test -vvv || exit 1
2018-09-27 17:33:15 +10:00
done