summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2021-09-13 11:05:35 +0300
committerEfraim Flashner <efraim@flashner.co.il>2021-09-13 15:04:33 +0300
commit8e7c84feccf9653307de2c3fcfc2c856fe21a97a (patch)
tree0c1add94d930cdb375a14d1aac6e1557562ff275 /gnu
parent5bde487831b8227afa185bb13c2444833036d66c (diff)
gnu: kmail: Allow skipping tests.
* gnu/packages/kde-pim.scm (kmail)[arguments]: Have custom 'check phase honor #:tests?.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/kde-pim.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 5d610143a73..b5966f05155 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -1107,8 +1107,9 @@ and retrieving certificates from LDAP servers.")
1107 `(#:phases 1107 `(#:phases
1108 (modify-phases %standard-phases 1108 (modify-phases %standard-phases
1109 (replace 'check 1109 (replace 'check
1110 (lambda _ 1110 (lambda* (#:key tests? #:allow-other-keys)
1111 (invoke "dbus-launch" "ctest" ".") 1111 (when tests?
1112 (invoke "dbus-launch" "ctest" "."))
1112 #t))))) 1113 #t)))))
1113 (home-page "https://kontact.kde.org/components/kmail.html") 1114 (home-page "https://kontact.kde.org/components/kmail.html")
1114 (synopsis "Full featured graphical email client") 1115 (synopsis "Full featured graphical email client")