mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-pytest-shard.
* gnu/packages/python-check.scm (python-pytest-shard): New variable.
This commit is contained in:
parent
ef7d9801e3
commit
22225dee9b
1 changed files with 24 additions and 0 deletions
|
@ -244,6 +244,30 @@ (define-public python-pytest-flakefinder
|
|||
times and detect flakyness.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-pytest-shard
|
||||
(let ((commit "64610a08dac6b0511b6d51cf895d0e1040d162ad")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "python-pytest-shard")
|
||||
(version (git-version "0.1.2" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/AdamGleave/pytest-shard")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1h31m68igz670bzl307hazjrfbr8pk14mxflllar18ydmlrnl677"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-pytest))
|
||||
(home-page "https://github.com/AdamGleave/pytest-shard")
|
||||
(synopsis "Pytest plugin for sharding tests")
|
||||
(description "This package provides a Pytest extension for sharding
|
||||
tests at the granularity of individual test cases, which can be run in
|
||||
parallel and on multiple machines.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public python-testfixtures
|
||||
(package
|
||||
(name "python-testfixtures")
|
||||
|
|
Loading…
Reference in a new issue