mirror of
https://github.com/powerline/powerline.git
synced 2025-09-04 16:48:40 +02:00
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
FAILED=0
|
|
export PYTHON="${PYTHON:=python}"
|
|
export PYTHONPATH="${PYTHONPATH}:`realpath .`"
|
|
for script in tests/run_*_tests.sh ; do
|
|
if ! sh $script ; then
|
|
echo "Failed $script"
|
|
FAILED=1
|
|
fi
|
|
done
|
|
exit $FAILED
|