haskell-postgresql-pure: disable test suite to fix the build

The tests need a running PostgreSQL database.
This commit is contained in:
Peter Simons 2020-06-19 21:17:43 +02:00
parent 8a34e3369e
commit d60fe71540

View file

@ -764,7 +764,8 @@ self: super: builtins.intersectAttrs super {
# The test suites fail because there's no PostgreSQL database running in our
# build sandbox.
postgresql-libpq-notify = dontCheck super.postgresql-libpq-notify;
hasql-queue = dontCheck super.hasql-queue;
postgresql-libpq-notify = dontCheck super.postgresql-libpq-notify;
postgresql-pure = dontCheck super.postgresql-pure;
}