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