mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: python-lazr-delegates: Fix test failure.
* gnu/packages/python-xyz.scm (python-lazr-delegates)[arguments]: Invoke 'nosetests' directly instead of through setup.py. While at it, respect '--without-tests'.
This commit is contained in:
parent
f5e78d4546
commit
146e931523
1 changed files with 2 additions and 2 deletions
|
@ -26082,8 +26082,8 @@ (define-public python-lazr-delegates
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "python" "setup.py" "nosetests"))))))
|
(when tests? (invoke "nosetests")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-nose))
|
(list python-nose))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Reference in a new issue