From b6d83d9b9b437cd19d2bfc251b4d8b80b3474849 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Fri, 21 May 2021 16:49:40 +0200 Subject: [PATCH] install for all python apps --- .github/scripts/python-pkg-install.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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::"