sintonia/travis/install.sh
2020-05-20 11:06:56 +02:00

25 lines
407 B
Bash
Executable file

#!/bin/bash
set -xe
if [[ -n "$TRAVIS_PHP_VERSION" ]]; then
composer install
fi
if [[ -n "$TRAVIS_PYTHON_VERSION" ]]; then
pyenv local $TRAVIS_PYTHON_VERSION
pushd python_apps/airtime_analyzer
pip3 install -e .
popd
pushd python_apps/airtime-celery
pip3 install -e .
popd
pushd python_apps/api_clients
pip3 install -e .
popd
pushd python_apps/pypo
pip3 install -e .
popd
fi