mbakke pushed a commit to branch master
in repository guix.
commit 6a86d59e28250771a3a0537108869f8c5bdee0a4
Author: Marius Bakke <[email protected]>
AuthorDate: Mon Jan 10 23:26:07 2022 +0100
gnu: pantalaimon: Disable sanity check.
* gnu/packages/matrix.scm (pantalaimon)[arguments]: Disable sanity-check
phase.
---
gnu/packages/matrix.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm
index 8cdfa38b32..1c19eab5c1 100644
--- a/gnu/packages/matrix.scm
+++ b/gnu/packages/matrix.scm
@@ -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))