mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-11 12:12:56 -03:00
418252f7c6
This reverts commit 43eda6b9df
.
5 lines
93 B
Bash
Executable file
5 lines
93 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for test in `ls -1 | egrep ^onionshare_`; do
|
|
pytest $test -vvv || exit 1
|
|
done
|