mirror of
https://github.com/powerline/powerline.git
synced 2025-07-26 23:35:04 +02:00
Do not try to test ipython if it is not available
This commit is contained in:
parent
1b56179676
commit
20e9575c17
@ -349,9 +349,11 @@ if ! test -z "$(cat tests/shell/daemon_log_2)" ; then
|
||||
fi
|
||||
|
||||
if test "x${ONLY_SHELL}" = "x" || test "x${ONLY_SHELL}" = "xipython" ; then
|
||||
echo "> $(which ipython)"
|
||||
if ! run_test ipython ipython ipython ; then
|
||||
FAILED=1
|
||||
if which ipython >/dev/null ; then
|
||||
echo "> $(which ipython)"
|
||||
if ! run_test ipython ipython ipython ; then
|
||||
FAILED=1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user