mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: tlpui: Honor TESTS?.
* gnu/packages/linux.scm (tlpui)[arguments]<#:phases>: Honor TESTS? in CHECK phase.
This commit is contained in:
parent
56892af033
commit
16c2372fe8
1 changed files with 3 additions and 2 deletions
|
@ -7178,8 +7178,9 @@ (define-public tlpui
|
|||
;; configuration from /etc/tlp.conf or /etc/default/tlp".
|
||||
(delete 'sanity-check)
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "python" "-m" "discover")))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "python" "-m" "discover"))))
|
||||
(add-after 'install 'wrap-gi-python
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
|
|
Loading…
Reference in a new issue