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
commit c9063b8907
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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