libretime/travis/python.sh

17 lines
206 B
Bash
Raw Normal View History

#!/bin/bash
set -xe
[[ "$PYTHON" == false ]] && exit 0
2020-01-20 14:04:35 +01:00
pyenv local 3.7
2020-01-22 11:10:37 +01:00
pushd python_apps/airtime_analyzer
pip3 install -e .
nosetests
popd
pushd python_apps/api_clients
pip3 install -e .
nosetests
popd