Merge pull request #173892 from gebner/fixbeetsminimal

beets: correctly ignore tests
This commit is contained in:
Gabriel Ebner
2022-05-21 18:01:09 +02:00
committed by GitHub
+1 -1
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