mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for dir in $(find -name pytest.ini -exec dirname {} +); do
|
|
pushd "$dir" >/dev/null
|
|
py.test "$@"
|
|
popd >/dev/null
|
|
done
|