[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: ocaml-ounit: Enable tests.
From: |
David Craven |
Subject: |
01/02: gnu: ocaml-ounit: Enable tests. |
Date: |
Wed, 4 Jan 2017 18:11:02 +0000 (UTC) |
dvc pushed a commit to branch master
in repository guix.
commit 337273e41f6bb9486424d0bb636e69f9ca55d88f
Author: David Craven <address@hidden>
Date: Wed Jan 4 18:53:03 2017 +0100
gnu: ocaml-ounit: Enable tests.
Followup to 7a76b4afd0ce296bb462be8cf66234e41672c285.
* gnu/packages/ocaml.scm (ocaml-ounit)[arguments]: Enable tests.
Problem reported by Julien Lepiller <address@hidden>.
---
gnu/packages/ocaml.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 25c0815..4313bde 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -777,7 +777,10 @@ compilers that can directly deal with packages.")
(native-inputs
`(("libxml2" ,libxml2))) ; for xmllint
(arguments
- `(#:tests? #f)) ; tests are done during build
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Tests are done during build.
+ (delete 'check))))
(home-page "http://ounit.forge.ocamlcore.org")
(synopsis "Unit testing framework for OCaml")
(description "Unit testing framework for OCaml. It is similar to JUnit and