diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2018-01-13 17:54:57 -0500 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2018-02-05 16:54:27 +0100 |
| commit | 58b6812fd4c480bc3ef07934c5967d18a2992292 (patch) | |
| tree | 80a17a44e6b44266bb5ee9225a51b876d950151c /guix/build-system | |
| parent | b7dee6a0b8af90e5adaa5b35f8dda359de96868d (diff) | |
emacs-build-system: Reinstate the check phase.
* guix/build/emacs-build-system.scm (%standard-phases): Reinstate the check
phase from the gnu-build-system.
* guix/build-system/emacs.scm (emacs-build)[tests?]: But do not enable it by default.
[parallel-tests?]: Add argument.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/build-system')
| -rw-r--r-- | guix/build-system/emacs.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build-system/emacs.scm b/guix/build-system/emacs.scm index 02296829c..d9f1a8d28 100644 --- a/guix/build-system/emacs.scm +++ b/guix/build-system/emacs.scm @@ -82,7 +82,8 @@ (define* (emacs-build store name inputs #:key source - (tests? #t) + (tests? #f) + (parallel-tests? #t) (test-target "test") (configure-flags ''()) (phases '(@ (guix build emacs-build-system) |