sintonia/travis/python.sh
2020-05-19 10:16:31 -04:00

16 lines
206 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