Merge pull request #173892 from gebner/fixbeetsminimal

beets: correctly ignore tests
main
Gabriel Ebner 2 years ago committed by GitHub
commit c9063b8907
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkgs/tools/audio/beets/common.nix

@ -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

Loading…
Cancel
Save