haskell-postgresql-libpq-notify: 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:13:44 +02:00
parent 3f301b06d9
commit a2656aad20
2 changed files with 4 additions and 1 deletions

View File

@ -8547,7 +8547,6 @@ broken-packages:
- postgres-embedded
- postgres-tmp
- postgres-websockets
- postgresql-libpq-notify
- postgresql-lo-stream
- postgresql-named
- postgresql-query

View File

@ -762,4 +762,8 @@ self: super: builtins.intersectAttrs super {
# Tests disabled as recommended at https://github.com/luke-clifton/shh/issues/39
shh = dontCheck super.shh;
# The test suites fail because there's no PostgreSQL database running in our
# build sandbox.
postgresql-libpq-notify = dontCheck super.postgresql-libpq-notify;
}