sintonia/.github/scripts/python-pkg-install.sh

11 lines
237 B
Bash
Raw Normal View History

2021-05-27 17:11:08 +02:00
#!/usr/bin/env bash
2021-05-21 16:22:50 +02:00
echo "::group::Install Python apps"
2021-08-16 17:44:19 +02:00
for app in python_apps/*; do
2021-08-17 00:00:18 +02:00
if [[ -f "$app/requirements-dev.txt" ]]; then
pip3 install -r "$app/requirements-dev.txt"
2021-06-08 00:12:14 +02:00
fi
2021-08-17 00:00:18 +02:00
pip3 install -e "$app"
2021-05-21 16:49:40 +02:00
done
2021-05-21 16:22:50 +02:00
echo "::endgroup::"