about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2022-11-21 16:33:46 -0500
committerVincent Laporte <vbgl@users.noreply.github.com>2022-11-22 10:02:45 +0100
commit287131c409bcb8fb53c401ed028815c3e20b6b39 (patch)
treefaaa12d9cefc890602c4f1a251f780f56f43912b
parent766cc473f7a92163617808190da869357f89f6ce (diff)
ocamlPackages.phylogenetics: run full test suite
As of upstream commit
https://github.com/biocaml/phylogenetics/commit/a107e96fa64fecb75a9e855293b2822196540b31
, the full tests using `bppsuite`, although barely longer than the short
tests, were not being run.
-rw-r--r--pkgs/development/ocaml-modules/phylogenetics/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/phylogenetics/default.nix b/pkgs/development/ocaml-modules/phylogenetics/default.nix
index 1cf9651e6ecc9..f3df658b6d591 100644
--- a/pkgs/development/ocaml-modules/phylogenetics/default.nix
+++ b/pkgs/development/ocaml-modules/phylogenetics/default.nix
@@ -40,6 +40,11 @@ buildDunePackage rec {
     printbox-text
   ];
 
+  checkPhase = ''
+    runHook preCheck
+    dune build @app/fulltest
+    runHook postCheck
+  '';
   doCheck = true;
 
   meta = with lib; {