beets: correctly ignore tests

This fixes the beetsPackages.beets-minimal build.
This commit is contained in:
Gabriel Ebner 2022-05-21 16:35:43 +02:00
parent 599ada91f1
commit e2ae9005ab

View file

@ -126,7 +126,7 @@ python3Packages.buildPythonApplication rec {
eval "disabledTestPaths=($disabledTestPaths)"
for path in ''${disabledTestPaths[@]}; do
if [ -e "$path" ]; then
args+=" --ignore \"$path\""
args+=" --ignore $path"
else
echo "Skipping non-existent test path '$path'"
fi