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