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-05-27 17:11:08 +02:00
|
|
|
for app in $(ls python_apps); do
|
2021-06-08 00:12:14 +02:00
|
|
|
if [[ -f "python_apps/$app/requirements-dev.txt" ]]; then
|
|
|
|
pip3 install -r "python_apps/$app/requirements-dev.txt"
|
|
|
|
fi
|
2021-06-07 23:58:16 +02:00
|
|
|
pip3 install -e "python_apps/$app"
|
2021-05-21 16:49:40 +02:00
|
|
|
done
|
2021-05-21 16:22:50 +02:00
|
|
|
echo "::endgroup::"
|