mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-pytest-check.
* gnu/packages/python-check.scm (python-pytest-check): New variable. Change-Id: Idfa08578c9ad23b644f842abc93455dd72970fc2
This commit is contained in:
parent
1e6d1c3211
commit
1daad52eac
1 changed files with 20 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||
;;; Copyright © 2024 Navid Afkhami <navid.afkhami@mdc-berlin.de>
|
||||
;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
|
||||
;;; Copyright © 2024 Eric Bavier <bavier@posteo.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1199,6 +1200,25 @@ representations of doctest results. It can change the display hook used by
|
|||
doctest to render the object representations.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pytest-check
|
||||
(package
|
||||
(name "python-pytest-check")
|
||||
(version "2.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pytest_check" version))
|
||||
(sha256
|
||||
(base32 "0l7n2jhadbkmqr8kzja8zwclhjvhc87qsgr5v867zgsry37fy92j"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs (list python-flit-core))
|
||||
(propagated-inputs (list python-pytest))
|
||||
(home-page "https://github.com/okken/pytest-check")
|
||||
(synopsis "Pytest plugin to allow multiple failures")
|
||||
(description "This package provides a pytest plugin that allows multiple
|
||||
failures per test.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pytest-checkdocs
|
||||
(package
|
||||
(name "python-pytest-checkdocs")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue