mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-pytest-dependency.
* gnu/packages/check.scm (python-pytest-dependency): New variable.
This commit is contained in:
parent
f57873f20b
commit
9857abadba
1 changed files with 23 additions and 0 deletions
|
@ -2915,3 +2915,26 @@ system. The code under test requires no modification to work with pyfakefs.")
|
||||||
(description "Aiounittest is a library that helps write tests using
|
(description "Aiounittest is a library that helps write tests using
|
||||||
asynchronous code in Python (asyncio).")
|
asynchronous code in Python (asyncio).")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pytest-dependency
|
||||||
|
(package
|
||||||
|
(name "python-pytest-dependency")
|
||||||
|
(version "0.5.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-dependency" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0swl3mxca7nnjbb5grfzrm3fa2750h9vjsha0f2kyrljc6895a62"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-pytest" ,python-pytest)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/RKrahl/pytest-dependency")
|
||||||
|
(synopsis "Manage dependencies of tests")
|
||||||
|
(description "This pytest plugin manages dependencies of tests. It allows
|
||||||
|
to mark some tests as dependent from other tests. These tests will then be
|
||||||
|
skipped if any of the dependencies did fail or has been skipped.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue