mirror of
https://github.com/YunoHost/ynh-dev.git
synced 2024-09-03 20:05:59 +02:00
[fix] tests: use backcotes on python package check condition.
This commit is contained in:
parent
e7053eab3a
commit
8538ae126d
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"
|
||||
for DEP in $PIP_DEPENDENCIES
|
||||
do
|
||||
if [ -z "pip show $DEP" ]; then
|
||||
if [ -z `pip show $DEP` ]; then
|
||||
echo "======================="
|
||||
echo "Installing $DEP with pip"
|
||||
echo "======================="
|
||||
|
|
Loading…
Add table
Reference in a new issue