gnu: Add python-pytest-tornado.
* gnu/packages/python-check.scm (python-pytest-tornado): New variable.
This commit is contained in:
parent
53e179c752
commit
8194b36ddf
1 changed files with 30 additions and 0 deletions
|
@ -1420,6 +1420,36 @@ (define-public python-pytest-console-scripts
|
|||
"This package provides a pytest plugin for testing console scripts.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pytest-tornado
|
||||
(package
|
||||
(name "python-pytest-tornado")
|
||||
(version "0.8.1")
|
||||
(source (origin
|
||||
(method git-fetch) ;no tests in pypi archive
|
||||
(uri (git-reference
|
||||
(url "https://github.com/eugeniy/pytest-tornado")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"05hgq1m9g35kpc01im7ci1wd85xi1rdxnyms9izjg65c9976zn6x"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest" "-vv")))))))
|
||||
(propagated-inputs (list python-pytest python-setuptools python-tornado))
|
||||
(home-page "https://github.com/eugeniy/pytest-tornado")
|
||||
(synopsis "Pytest plugin to ease testing tornado applications")
|
||||
(description
|
||||
"This package provides a py.test plugin providing fixtures and markers to
|
||||
simplify testing of asynchronous tornado applications.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-pytest-tornasync
|
||||
(package
|
||||
(name "python-pytest-tornasync")
|
||||
|
|
Loading…
Reference in a new issue