mirror of
https://github.com/powerline/powerline.git
synced 2025-07-31 01:35:40 +02:00
10 lines
227 B
Bash
Executable File
10 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
FAILED=0
|
|
if ! sh tests/test_shells/test.sh --fast ; then
|
|
echo "Failed shells"
|
|
if ${PYTHON} -c 'import platform, sys; sys.exit(1 * (platform.python_implementation() == "PyPy"))' ; then
|
|
FAILED=1
|
|
fi
|
|
fi
|
|
exit $FAILED
|