mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-26 19:22:59 -03:00
5 lines
104 B
Bash
Executable file
5 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
|