21 lines
282 B
Bash
Executable File
21 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"
|