sintonia/travis/python.sh
Kyle Robbertze e8a0783139 Fix tests
2020-04-29 19:06:52 +02:00

20 lines
282 B
Bash
Executable file

#!/bin/bash
set -xe
[[ "$PYTHON" == false ]] && exit 0
pyenv local 3.7
pushd python_apps/airtime_analyzer
pip3 install -e .
nosetests
popd
pushd python_apps/api_clients
pip3 install -e .
nosetests
popd
echo "Building docs..."
mkdocs build --clean -q > /dev/null
echo -n "done"