From 64a14527a9099ce7ea3b1cc743bc66a06d1bd596 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 26 Dec 2021 12:07:34 +0100 Subject: [PATCH] haskellPackages.xmlbf: skip ordering dependent tests --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b330c3e19f61..d1eb2c085481 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2212,5 +2212,11 @@ self: super: { "--skip" "/toJsonSerializer/should generate valid JSON/" ] ++ drv.testFlags or []; }) super.hschema-aeson; + # https://gitlab.com/k0001/xmlbf/-/issues/32 + xmlbf = overrideCabal (drv: { + testFlags = [ + "-p" "!/xml: <\\/x>/&&!/xml: <\\/x>/" + ] ++ drv.testFlags or []; + }) super.xmlbf; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super