doctest-driver-gen: disable test suite to fix the build

This commit is contained in:
Peter Simons 2021-03-12 15:32:31 +01:00
parent a2e674988c
commit 83d011cc89
2 changed files with 4 additions and 1 deletions

View file

@ -4825,7 +4825,6 @@ broken-packages:
- docrecords
- DocTest
- doctest-discover-configurator
- doctest-driver-gen
- doctest-prop
- docusign-base
- docusign-base-minimal

View file

@ -812,4 +812,8 @@ self: super: builtins.intersectAttrs super {
# hadolint enables static linking by default in the cabal file, so we have to explicitly disable it.
# https://github.com/hadolint/hadolint/commit/e1305042c62d52c2af4d77cdce5d62f6a0a3ce7b
hadolint = disableCabalFlag super.hadolint "static";
# Test suite tries to execute the build product "doctest-driver-gen", but it's not in $PATH.
doctest-driver-gen = dontCheck super.doctest-driver-gen;
}