gnu: Add python-pytest-forked
* gnu/packages/check.scm (python-pytest-forked): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ecceef27c8
commit
b27a0dd46c
1 changed files with 25 additions and 0 deletions
|
@ -1026,6 +1026,31 @@ result back.")
|
||||||
timeout has been exceeded.")
|
timeout has been exceeded.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pytest-forked
|
||||||
|
(package
|
||||||
|
(name "python-pytest-forked")
|
||||||
|
(version "1.1.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-forked" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"000i4q7my2fq4l49n8idx2c812dql97qv6qpm2vhrrn9v6g6j18q"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-pytest" ,python-pytest)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-setuptools-scm" ,python-setuptools-scm)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/pytest-dev/pytest-forked")
|
||||||
|
(synopsis
|
||||||
|
"Run tests in isolated forked subprocesses")
|
||||||
|
(description
|
||||||
|
"Pytest plugin which will run each test in a subprocess and will report if
|
||||||
|
a test crashed the process.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-scripttest
|
(define-public python-scripttest
|
||||||
(package
|
(package
|
||||||
(name "python-scripttest")
|
(name "python-scripttest")
|
||||||
|
|
Reference in a new issue