Merge pull request #38613 from endgame/blank-canvas-dontcheck

haskellPackages.blank-canvas: disable tests
This commit is contained in:
Peter Simons 2018-04-09 16:21:57 +02:00 committed by GitHub
commit 62e06d98a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -203,7 +203,7 @@ self: super: builtins.intersectAttrs super {
# Tries to mess with extended POSIX attributes, but can't in our chroot environment.
xattr = dontCheck super.xattr;
# Needs access to locale data, but looks for it in the wrong place.
# Needs access to locale data, but looks for it in the wrong place.
scholdoc-citeproc = dontCheck super.scholdoc-citeproc;
# Expect to find sendmail(1) in $PATH.
@ -498,4 +498,7 @@ self: super: builtins.intersectAttrs super {
LDAP = dontCheck (overrideCabal super.LDAP (drv: {
librarySystemDepends = drv.librarySystemDepends or [] ++ [ pkgs.cyrus_sasl.dev ];
}));
# Tests require a browser: https://github.com/ku-fpg/blank-canvas/issues/73
blank-canvas = dontCheck super.blank-canvas;
}