diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2021-09-13 11:04:50 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2021-09-13 15:04:33 +0300 |
| commit | 5bde487831b8227afa185bb13c2444833036d66c (patch) | |
| tree | 2a6ca8a26ed17256bb4bb8019920e8f91e1291bf /gnu | |
| parent | ec0e05ff306c950142c9ead7c712c749617069e7 (diff) | |
gnu: akonadi-search: Allow skipping tests.
* gnu/packages/kde-pim.scm (akonadi-search)[arguments]: Have custom
'check phase honor #:tests?.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/kde-pim.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm index db73941b426..5d610143a73 100644 --- a/gnu/packages/kde-pim.scm +++ b/gnu/packages/kde-pim.scm | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com> | 2 | ;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com> |
| 3 | ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> | 3 | ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> |
| 4 | ;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il> | ||
| 4 | ;;; | 5 | ;;; |
| 5 | ;;; This file is part of GNU Guix. | 6 | ;;; This file is part of GNU Guix. |
| 6 | ;;; | 7 | ;;; |
| @@ -339,8 +340,9 @@ wrapping notes into KMime::Message objects.") | |||
| 339 | "")) | 340 | "")) |
| 340 | #t)) | 341 | #t)) |
| 341 | (replace 'check | 342 | (replace 'check |
| 342 | (lambda _ | 343 | (lambda* (#:key tests? #:allow-other-keys) |
| 343 | (invoke "dbus-launch" "ctest")))))) | 344 | (when tests? |
| 345 | (invoke "dbus-launch" "ctest"))))))) | ||
| 344 | (home-page "https://api.kde.org/kdepim/akonadi/html/index.html") | 346 | (home-page "https://api.kde.org/kdepim/akonadi/html/index.html") |
| 345 | (synopsis "Akonadi search library") | 347 | (synopsis "Akonadi search library") |
| 346 | (description "This package provides a library used to search in the | 348 | (description "This package provides a library used to search in the |
