sintonia/.github/scripts/python-pkg-install.sh
2021-06-08 14:28:16 +02:00

10 lines
277 B
Bash
Executable file

#!/usr/bin/env bash
echo "::group::Install Python apps"
for app in $(ls python_apps); do
if [[ -f "python_apps/$app/requirements-dev.txt" ]]; then
pip3 install -r "python_apps/$app/requirements-dev.txt"
fi
pip3 install -e "python_apps/$app"
done
echo "::endgroup::"