zsh: re-enable tests skipping broken
Do not disable all tests, only those broken as zsh/zpty module is not available on hydra.
This commit is contained in:
parent
70d7cfdb8c
commit
97332d30f6
@ -21,13 +21,19 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ ncurses coreutils pcre ];
|
buildInputs = [ ncurses coreutils pcre ];
|
||||||
|
|
||||||
preConfigure = ''
|
configureFlags = [
|
||||||
configureFlags="--enable-maildir-support --enable-multibyte --enable-zprofile=$out/etc/zprofile --with-tcsetpgrp --enable-pcre"
|
"--enable-maildir-support"
|
||||||
'';
|
"--enable-multibyte"
|
||||||
|
"--enable-zprofile=$out/etc/zprofile"
|
||||||
|
"--with-tcsetpgrp"
|
||||||
|
"--enable-pcre"
|
||||||
|
];
|
||||||
|
|
||||||
# Some tests fail on hydra, see
|
# the zsh/zpty module is not available on hydra
|
||||||
# http://hydra.nixos.org/build/25637689/nixlog/1
|
# so skip groups Y Z
|
||||||
doCheck = false;
|
checkFlagsArray = ''
|
||||||
|
(TESTNUM=A TESTNUM=B TESTNUM=C TESTNUM=D TESTNUM=E TESTNUM=V TESTNUM=W)
|
||||||
|
'';
|
||||||
|
|
||||||
# XXX: think/discuss about this, also with respect to nixos vs nix-on-X
|
# XXX: think/discuss about this, also with respect to nixos vs nix-on-X
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user