mirror of
https://github.com/YunoHost/ynh-dev.git
synced 2024-09-03 20:05:59 +02:00
[microdecision] Syntax fix for ./ynh-dev test dependencies (#25)
This commit is contained in:
parent
686f11cf23
commit
b0912a4098
1 changed files with 1 additions and 1 deletions
2
ynh-dev
2
ynh-dev
|
@ -326,7 +326,7 @@ elif [ "$1" = "test" ]; then
|
||||||
PIP_DEPENDENCIES="pytest-mock requests-mock"
|
PIP_DEPENDENCIES="pytest-mock requests-mock"
|
||||||
for DEP in $PIP_DEPENDENCIES
|
for DEP in $PIP_DEPENDENCIES
|
||||||
do
|
do
|
||||||
if [ -z `pip show $DEP` ]; then
|
if [ -z "$(pip show $DEP)" ]; then
|
||||||
echo "======================="
|
echo "======================="
|
||||||
echo "Installing $DEP with pip"
|
echo "Installing $DEP with pip"
|
||||||
echo "======================="
|
echo "======================="
|
||||||
|
|
Loading…
Add table
Reference in a new issue