Fix CI python app installation

This commit is contained in:
jo 2021-08-17 00:00:18 +02:00
parent 9881eebf55
commit 5ec5ef8a40
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@
echo "::group::Install Python apps"
for app in python_apps/*; do
if [[ -f "python_apps/$app/requirements-dev.txt" ]]; then
pip3 install -r "python_apps/$app/requirements-dev.txt"
if [[ -f "$app/requirements-dev.txt" ]]; then
pip3 install -r "$app/requirements-dev.txt"
fi
pip3 install -e "python_apps/$app"
pip3 install -e "$app"
done
echo "::endgroup::"