haskellPackages.morpheus-graphql-core: skip ordering dependent tests

main
sternenseemann 2 years ago
parent 71e3d4dbb1
commit 2725f26574
  1. 6
      pkgs/development/haskell-modules/configuration-common.nix

@ -2194,5 +2194,11 @@ self: super: {
}) super.json-to-haskell;
# https://github.com/fieldstrength/aeson-deriving/issues/5
aeson-deriving = dontCheck super.aeson-deriving;
# https://github.com/morpheusgraphql/morpheus-graphql/issues/660
morpheus-graphql-core = overrideCabal (drv: {
testFlags = [
"-p" "!/field.unexpected-value/&&!/field.missing-field/&&!/argument.unexpected-value/&&!/argument.missing-field/"
] ++ drv.testFlags or [];
}) super.morpheus-graphql-core;
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super

Loading…
Cancel
Save