onionshare/unit_tests/run_unit_tests_travis.sh
2018-09-22 17:06:02 +10:00

6 lines
104 B
Bash
Executable File

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