mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-03 19:51:05 -05:00
6 lines
93 B
Bash
Executable File
6 lines
93 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for test in `ls -1 | egrep ^onionshare_`; do
|
|
pytest $test -vvv || exit 1
|
|
done
|