diff --git a/tests/test.sh b/tests/test.sh index 1e4c62ec..4c6704f5 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -1,19 +1,12 @@ #!/bin/sh : ${PYTHON:=python} FAILED=0 -if ${PYTHON} -c 'import sys; sys.exit(1 * (sys.version_info >= (2, 7)))' ; then - # Python 2.6 - export PYTHONPATH="${PYTHONPATH}:`realpath .`" - for file in tests/test_*.py ; do - if ! ${PYTHON} $file ; then - FAILED=1 - fi - done -else - if ! ${PYTHON} setup.py test ; then +export PYTHONPATH="${PYTHONPATH}:`realpath .`" +for file in tests/test_*.py ; do + if ! ${PYTHON} $file ; then FAILED=1 fi -fi +done if ! ${PYTHON} scripts/powerline-lint ; then FAILED=1 fi