3
0
Fork 0
forked from mirrors/nixpkgs

haskell-postgresql-simple: disable 'doCheck' to avoid test suite failure

Test suite test: RUNNING...
test: SqlError {sqlState = "", sqlNativeError = -1, sqlErrorMsg = "could not connect to server: No such file or directory\n\tIs the server running locally and accepting\n\tconnections on Unix domain socket \"/tmp/.s.PGSQL.5432\"?\n"}
Test suite test: FAIL
Test suite logged to: dist/test/postgresql-simple-0.2.4.1-test.log
0 of 1 test suites (0 of 1 test cases) passed.
This commit is contained in:
Peter Simons 2013-02-25 00:34:56 +01:00
parent 42db9ae872
commit 2399599a70

View file

@ -12,6 +12,7 @@ cabal.mkDerivation (self: {
transformers vector
];
testDepends = [ base16Bytestring cryptohash HUnit text time ];
doCheck = false;
meta = {
description = "Mid-Level PostgreSQL client library";
license = self.stdenv.lib.licenses.bsd3;