From b6ff715c08b399e5034e14483140ec5c4fc5602e Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 9 May 2026 16:27:31 +0200 Subject: gnu: Add python-pytest-reportlog. * gnu/packages/python-check.scm (python-pytest-reportlog): New variable. Change-Id: I2b031d9d6e73b0721c142a7bfb10e631e15c11fc Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-check.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu/packages/python-check.scm') diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index a03a6a1053c..2574532661d 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -3980,6 +3980,29 @@ enables repeating a single test, or multiple tests, a specific number of times.") (license license:mpl2.0))) +(define-public python-pytest-reportlog + (package + (name "python-pytest-reportlog") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pytest-dev/pytest-reportlog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19h1kmwas42qmirdfaw0ffq3g7ibsdd46xfia71i6l8z1qswxwb1")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-pytest)) + (native-inputs (list python-hatch-vcs python-hatchling)) + (home-page "https://github.com/pytest-dev/pytest-reportlog") + (synopsis "Replacement for the --resultlog pytest option") + (description + "This package provides a replacement for the @code{--resultlog} option, +focused in simplicity and extensibility.") + (license license:expat))) + (define-public python-pytest-rerunfailures (package (name "python-pytest-rerunfailures") -- cgit v1.2.3