diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-09-13 11:05:35 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-09-13 15:04:33 +0300 |
commit | 8e7c84feccf9653307de2c3fcfc2c856fe21a97a (patch) | |
tree | 0c1add94d930cdb375a14d1aac6e1557562ff275 /gnu/packages | |
parent | 5bde487831b8227afa185bb13c2444833036d66c (diff) | |
download | guix-8e7c84feccf9653307de2c3fcfc2c856fe21a97a.tar.gz guix-8e7c84feccf9653307de2c3fcfc2c856fe21a97a.zip |
gnu: kmail: Allow skipping tests.
* gnu/packages/kde-pim.scm (kmail)[arguments]: Have custom 'check phase
honor #:tests?.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/kde-pim.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm index 5d610143a7..b5966f0515 100644 --- a/gnu/packages/kde-pim.scm +++ b/gnu/packages/kde-pim.scm @@ -1107,8 +1107,9 @@ and retrieving certificates from LDAP servers.") `(#:phases (modify-phases %standard-phases (replace 'check - (lambda _ - (invoke "dbus-launch" "ctest" ".") + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "dbus-launch" "ctest" ".")) #t))))) (home-page "https://kontact.kde.org/components/kmail.html") (synopsis "Full featured graphical email client") |