onionshare/tests_gui/run_unit_tests.sh

5 lines
88 B
Bash
Executable file

#!/bin/bash
for test in `ls -1 | egrep ^local_`; do
pytest $test -vvv || exit 1
done