2020-12-01 04:55:02 +01:00
|
|
|
#/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
|
2020-12-01 04:55:02 +01:00
|
|
|
|
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::"
|