diff --git a/.github/scripts/python-pkg-install.sh b/.github/scripts/python-pkg-install.sh index 55e02aeb6..f2ea20314 100755 --- a/.github/scripts/python-pkg-install.sh +++ b/.github/scripts/python-pkg-install.sh @@ -2,8 +2,7 @@ echo "::group::Install Python apps" pip3 install nose mock -pip3 install -e python_apps/airtime_analyzer/. -pip3 install -e python_apps/airtime-celery/. -pip3 install -e python_apps/api_clients/. -pip3 install -e python_apps/pypo/. +for app in `ls python_apps`; do + pip3 install -e python_apps/$app +done echo "::endgroup::"