Merge pull request #51861 from hedning/fix-libcouchbase-test

libcouchbase: tests can't run in parallel
This commit is contained in:
Tor Hedin Brønner 2018-12-11 10:52:02 +01:00 committed by GitHub
commit f07d5d125d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libevent openssl ];
# Running tests in parallel does not work
enableParallelChecking = false;
doCheck = !stdenv.isDarwin;
meta = with stdenv.lib; {