3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

Revert "gnu: Add python-pytest-rerunfailures."

This added a duplicate package definition.

This reverts commit 51e26b297c.
This commit is contained in:
Leo Famulari 2021-12-26 18:37:44 -05:00
parent 4e9895b462
commit c9c7b0e127
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -1154,34 +1154,6 @@ service processes for your tests with pytest.")
new fixtures, new methods and new comparison objects.")
(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)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(invoke "python" "-m" "pytest"
"test_pytest_rerunfailures.py")))))))
(native-inputs
(list python-pytest))
(home-page "https://github.com/pytest-dev/pytest-rerunfailures")
(synopsis "Pytest plugin to re-run tests to eliminate flaky failures")
(description "This package provides a Pytest plugin to re-run tests to
eliminate flaky failures.")
(license license:mpl2.0)))
(define-public python-pytest-aiohttp
(package
(name "python-pytest-aiohttp")