libretime/travis/python.sh

18 lines
237 B
Bash
Raw Normal View History

#!/bin/bash
set -xe
[[ "$PYTHON" == false ]] && exit 0
2020-01-20 13:44:17 +01:00
python3 --version
2017-09-17 11:35:36 +02:00
pushd python_apps/airtime_analyzer
2020-01-20 13:58:00 +01:00
pyenv local 3.6
2020-01-16 14:58:20 +01:00
pip3 install -e .
2020-01-20 13:44:17 +01:00
nosetests
popd
echo "Building docs..."
mkdocs build --clean -q > /dev/null
echo -n "done"