gnu: pantalaimon: Disable sanity check.
* gnu/packages/matrix.scm (pantalaimon)[arguments]: Disable sanity-check phase.
parent
e768df37c1
commit
6a86d59e28
|
@ -254,7 +254,10 @@ fledged batteries-included asyncio layer using aiohttp.")
|
||||||
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(add-installed-pythonpath inputs outputs)
|
(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
|
(native-inputs
|
||||||
(list python-pytest python-faker python-pytest-aiohttp
|
(list python-pytest python-faker python-pytest-aiohttp
|
||||||
python-aioresponses))
|
python-aioresponses))
|
||||||
|
|
Reference in New Issue