@@ -65,6 +65,9 @@ hfinal: hprev: with haskell.lib.compose; {
6565 # doctests fail
6666 bsb-http-chunked = dontCheck hprev . bsb-http-chunked ;
6767
68+ # tests don't work when run with nix
69+ call-stack = dontCheck hprev . call-stack ;
70+
6871 # Tests don't include all necessary files.
6972 c2hs = dontCheck hprev . c2hs ;
7073
@@ -75,6 +78,7 @@ hfinal: hprev: with haskell.lib.compose; {
7578
7679 colour = dontCheck hprev . colour ;
7780
81+ # circular dep in tests
7882 doctest = dontCheck hprev . doctest ;
7983
8084 doctest-parallel = dontCheck hprev . doctest-parallel ;
@@ -200,16 +204,22 @@ hfinal: hprev: with haskell.lib.compose; {
200204 # circular dependency in tests
201205 options = dontCheck hprev . options ;
202206
207+ # circular dependency in tests
208+ optparse-applicative = dontCheck hprev . optparse-applicative ;
209+
203210 # tests require postgres running
204211 pg-transact = dontCheck hprev . pg-transact ;
205212
206213 # Tests run for a really long time, and also require a broken package.
207214 prettyprinter = dontCheck hprev . prettyprinter ;
208215
216+ # circular dependency in tests
217+ prettyprinter-ansi-terminal = dontCheck hprev . prettyprinter-ansi-terminal ;
218+
209219 random = dontCheck hprev . random ;
210220
211- # Disabling doctests .
212- regex-tdfa = overrideCabal { testTarget = "regex-tdfa-unittest" ; } hprev . regex-tdfa ;
221+ # Some tests don't work .
222+ regex-tdfa = dontCheck hprev . regex-tdfa ;
213223
214224 # the rio test suite calls functions from unliftio that are broken:
215225 # https://github.com/fpco/unliftio/issues/87
@@ -249,6 +259,7 @@ hfinal: hprev: with haskell.lib.compose; {
249259 # requires a version of chell that is not in the stackage resolver
250260 system-filepath = dontCheck hprev . system-filepath ;
251261
262+ # circular dep in tests
252263 tasty = dontCheck hprev . tasty ;
253264
254265 tasty-discover =
@@ -262,6 +273,9 @@ hfinal: hprev: with haskell.lib.compose; {
262273
263274 tasty-expected-failure = dontCheck hprev . tasty-expected-failure ;
264275
276+ # circular dep in tests
277+ temporary = dontCheck hprev . temporary ;
278+
265279 test-framework = dontCheck hprev . test-framework ;
266280
267281 # requires a version of tasty that is not in the stackage resolver
0 commit comments