mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: python2-requests-mock: Disable tests.
* gnu/packages/openstack.scm (python2-requests-mock)[arguments]: New field. (python-requests-mock): Delay it.
This commit is contained in:
parent
ec867b86a0
commit
dc6bedbaca
1 changed files with 7 additions and 1 deletions
|
@ -271,10 +271,16 @@ (define-public python-requests-mock
|
|||
(description
|
||||
"This module provides a building block to stub out the HTTP requests
|
||||
portions of your testing code.")
|
||||
(properties `((python2-variant . ,(delay python2-requests-mock))))
|
||||
(license asl2.0)))
|
||||
|
||||
(define-public python2-requests-mock
|
||||
(package-with-python2 python-requests-mock))
|
||||
(package (inherit (package-with-python2
|
||||
(strip-python2-variant python-requests-mock)))
|
||||
(arguments
|
||||
`(#:python ,python-2
|
||||
;; FIXME: 'subunit.run discover: error: no such option: --list'
|
||||
#:tests? #f))))
|
||||
|
||||
(define-public python-stevedore
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue