me
/
guix
Archived
1
0
Fork 0

gnu: pantalaimon: Disable sanity check.

* gnu/packages/matrix.scm (pantalaimon)[arguments]: Disable sanity-check phase.
Marius Bakke 2022-01-10 23:26:07 +01:00
parent e768df37c1
commit 6a86d59e28
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 4 additions and 1 deletions

View File

@ -254,7 +254,10 @@ fledged batteries-included asyncio layer using aiohttp.")
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(invoke "pytest" "-vv" "tests")))))))
(invoke "pytest" "-vv" "tests"))))
;; XXX: The sanity check trips on optional GUI libraries for the
;; panctl command.
(delete 'sanity-check))))
(native-inputs
(list python-pytest python-faker python-pytest-aiohttp
python-aioresponses))