summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-05-09 16:27:31 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:19:32 +0100
commitb6ff715c08b399e5034e14483140ec5c4fc5602e (patch)
tree35dc5451c39de3725c4cd5695ac5575c109b7d91 /gnu
parent4196b9da4ec5edc3a4e8039eb167a4dd2cf1aeac (diff)
gnu: Add python-pytest-reportlog.
* gnu/packages/python-check.scm (python-pytest-reportlog): New variable. Change-Id: I2b031d9d6e73b0721c142a7bfb10e631e15c11fc Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-check.scm23
1 files changed, 23 insertions, 0 deletions
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
3980times.") 3980times.")
3981 (license license:mpl2.0))) 3981 (license license:mpl2.0)))
3982 3982
3983(define-public python-pytest-reportlog
3984 (package
3985 (name "python-pytest-reportlog")
3986 (version "1.0.0")
3987 (source
3988 (origin
3989 (method git-fetch)
3990 (uri (git-reference
3991 (url "https://github.com/pytest-dev/pytest-reportlog")
3992 (commit (string-append "v" version))))
3993 (file-name (git-file-name name version))
3994 (sha256
3995 (base32 "19h1kmwas42qmirdfaw0ffq3g7ibsdd46xfia71i6l8z1qswxwb1"))))
3996 (build-system pyproject-build-system)
3997 (propagated-inputs (list python-pytest))
3998 (native-inputs (list python-hatch-vcs python-hatchling))
3999 (home-page "https://github.com/pytest-dev/pytest-reportlog")
4000 (synopsis "Replacement for the --resultlog pytest option")
4001 (description
4002 "This package provides a replacement for the @code{--resultlog} option,
4003focused in simplicity and extensibility.")
4004 (license license:expat)))
4005
3983(define-public python-pytest-rerunfailures 4006(define-public python-pytest-rerunfailures
3984 (package 4007 (package
3985 (name "python-pytest-rerunfailures") 4008 (name "python-pytest-rerunfailures")