mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-trio: Honor #:tests? flag.
* gnu/packages/python-xyz.scm (python-trio)[arguments]: Honor #:tests? flag.
This commit is contained in:
parent
5254e37542
commit
dda6b8b99f
1 changed files with 21 additions and 20 deletions
|
@ -22615,7 +22615,8 @@ project.")
|
|||
(setenv "HOME" "/tmp")
|
||||
#t))
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest" "-vv" "-k"
|
||||
(string-append
|
||||
;; This test times out.
|
||||
|
@ -22634,7 +22635,7 @@ project.")
|
|||
" and not test_getnameinfo"
|
||||
" and not test_SocketType_resolve"
|
||||
;; OSError: protocol not found.
|
||||
" and not test_getprotobyname")))))))
|
||||
" and not test_getprotobyname"))))))))
|
||||
(native-inputs
|
||||
`(("python-astor" ,python-astor)
|
||||
("python-ipython" ,python-ipython)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue