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

9 lines
163 B
Bash
Raw Normal View History

#/bin/bash
2021-05-21 16:22:50 +02:00
echo "::group::Install Python apps"
2021-05-21 15:45:05 +02:00
pip3 install nose mock
2021-05-21 16:49:40 +02:00
for app in `ls python_apps`; do
pip3 install -e python_apps/$app
done
2021-05-21 16:22:50 +02:00
echo "::endgroup::"