summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-13 13:34:08 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-18 15:11:39 +0100
commit6a721c3707608fba7af0f9d2cd7a3e3f660d74c6 (patch)
tree012794b31ce3974d54721e2fad5085afaa20f2eb /gnu/packages/python-check.scm
parentea48406b229a33a8c670ca626a3c0a9550ebe8c7 (diff)
gnu: Add python-pytest-skip-slow.
* gnu/packages/python-check.scm (python-pytest-skip-slow): New variable.
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 0d2ed6984cd..4249de22f0b 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -4334,6 +4334,30 @@ parallel and on multiple machines.")
4334py.test testing framework.") 4334py.test testing framework.")
4335 (license license:expat))) 4335 (license license:expat)))
4336 4336
4337(define-public python-pytest-skip-slow
4338 (package
4339 (name "python-pytest-skip-slow")
4340 (version "1.1.0")
4341 (source
4342 (origin
4343 (method git-fetch)
4344 (uri (git-reference
4345 (url "https://github.com/okken/pytest-skip-slow")
4346 (commit version)))
4347 (file-name (git-file-name name version))
4348 (sha256
4349 (base32 "1c1m75z9plzhn13hys8cl23x7jp0rxghrk5mjw8x78zw6c93abp9"))))
4350 (build-system pyproject-build-system)
4351 (native-inputs
4352 (list python-flit-core
4353 python-pytest-bootstrap))
4354 (home-page "https://github.com/okken/pytest-skip-slow")
4355 (synopsis "Pytest plugin to skip @code{@@pytest.mark.slow} tests")
4356 (description
4357 "This package provides a Pytest plugin to skip @code{@@pytest.mark.slow}
4358tests by default.")
4359 (license license:expat)))
4360
4337(define-public python-pytest-snapshot 4361(define-public python-pytest-snapshot
4338 (package 4362 (package
4339 (name "python-pytest-snapshot") 4363 (name "python-pytest-snapshot")