Open hasanalrasyid opened 5 years ago
Hi,
some Haskell packages have long-running (and possibly memory-heavy) test suites. You can exclude tests from a Haskell package by adding a suitable line to default.nix:
haskellPackages = hp.override (old: {
overrides = pkgs.lib.composeExtensions (old.overrides or (_: _: {})) (self: super: {
tasty-quickcheck = pkgs.haskell.lib.dontCheck super.tasty-quickcheck;
});});
Does this solve your problem?
Yes, it does. On the same issue, following your suggestion, I also excluded tests from scientific and aeson package.
Btw, for following issues to come, should I make another ticket or may I continue this thread?
You can choose yourself whichever way feels easier for you. As long as you somehow let me know of the problems :)
During these years, fighting with below-average quality react-native tooling and it's constant breaking changes would have required much more time than I had to spend. Therefore I'd recommend for you to try the new project template based on renative.org: https://github.com/jyrimatti/renative-hs https://github.com/jyrimatti/renative-hs-example-todo
Attached quickstart.log shown that the process was stuck (not stopped) for more than 24 hours and can only be killed/cancelled.
Are there some additional steps required?
quickstart.log