indico-plugins/run-tests.sh
Pedro Ferreira 547e8a7023 Add script that handles i18n operations
init, extract and update can be done for all plugins at once
2015-03-12 11:28:49 +01:00

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