Open snoyberg opened 9 years ago
David writes in #46:
This is a terrible test suite (I can say this because I wrote it.) I'm tempted to mark it Buildable: False. Its success is very dependent on the exact version of ghc and of many of the library packages that happen to be installed when it runs.
@snoyberg, I believe there is a way to ignore test suites in stackage? Maybe that would be something to be done here.
I've already done that in the short term pending an answer on this issue. I'm fine leaving that in place. The point where I disable the test suites refers back to this issue as well.
I'm thinking if I make a flag
Flag tests
Default: True
and then in the test suite say
if !flag(tests)
Buildable: False
and make the test suite depend on base>=4.8.1.0 and/or ghc-7.10.2 it might fix things? I'm not 100% clear on the semantics of cabal flags.
To be clear, the test failed for me on GHC 7.10.2
On Mon, Aug 24, 2015, 8:35 PM David Fox notifications@github.com wrote:
I'm thinking if I make a flag
Flag tests Default: True
and then in the test suite say
if !flag(tests) Buildable: False
and make the test suite depend on base>=4.8.1.0 and/or ghc-7.10.2 it might fix things? I'm not 100% clear on the semantics of cabal flags.
— Reply to this email directly or view it on GitHub https://github.com/ddssff/cabal-debian/issues/50#issuecomment-134310970.
Ok.