gnu: Add python-pytest-rerunfailures.

* gnu/packages/python-check.scm (python-pytest-rerunfailures): New variable.
This commit is contained in:
Ricardo Wurmus 2021-12-07 12:35:00 +01:00
parent c25a6d39f3
commit 6874994fa9
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1859,6 +1859,24 @@ (define-public python-aioresponses
HTTP requests.") HTTP requests.")
(license license:expat))) (license license:expat)))
(define-public python-pytest-rerunfailures
(package
(name "python-pytest-rerunfailures")
(version "10.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pytest-rerunfailures" version))
(sha256
(base32 "15v68kggjvkflbqr0vz8gp5yp3pcsk0rz05bpg2l4xp0a6nin7ly"))))
(build-system python-build-system)
(propagated-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/pytest-dev/pytest-rerunfailures")
(synopsis "Pytest plugin to re-run flaky tests")
(description "This package provides a pytest plugin to re-run tests to
eliminate flaky failures.")
(license license:mpl2.0)))
(define-public python-xunitparser (define-public python-xunitparser
(package (package
(name "python-xunitparser") (name "python-xunitparser")