gnu: python-trio: Honor #:tests? flag.

* gnu/packages/python-xyz.scm (python-trio)[arguments]: Honor #:tests?
flag.
This commit is contained in:
Efraim Flashner 2021-10-15 13:21:42 +03:00
parent 5254e37542
commit dda6b8b99f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -22615,7 +22615,8 @@ project.")
(setenv "HOME" "/tmp") (setenv "HOME" "/tmp")
#t)) #t))
(replace 'check (replace 'check
(lambda _ (lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv" "-k" (invoke "pytest" "-vv" "-k"
(string-append (string-append
;; This test times out. ;; This test times out.
@ -22634,7 +22635,7 @@ project.")
" and not test_getnameinfo" " and not test_getnameinfo"
" and not test_SocketType_resolve" " and not test_SocketType_resolve"
;; OSError: protocol not found. ;; OSError: protocol not found.
" and not test_getprotobyname"))))))) " and not test_getprotobyname"))))))))
(native-inputs (native-inputs
`(("python-astor" ,python-astor) `(("python-astor" ,python-astor)
("python-ipython" ,python-ipython) ("python-ipython" ,python-ipython)