diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-05-26 17:11:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-26 17:11:20 +0200 |
commit | 7097e98586df3110b80943a88c27804d65f214fa (patch) | |
tree | 2e244b9fc19acc569d6abd42306aaf013f02da0d /gnu/packages/python-check.scm | |
parent | 15870cc08d20501e3526fa892111a43ae9e3e02f (diff) | |
parent | 4577f3c6b60ea100e521c246fb169d6c05214b20 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r-- | gnu/packages/python-check.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index b86f75dc1b..d788935caa 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -2166,6 +2166,24 @@ Python objects. It tries to use the objects available in the standard @code{unittest} module.") (license license:expat))) +(define-public python-test-utils + (package + (name "python-test-utils") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "test-utils" version)) + (sha256 + (base32 "0cs0gyihnkj8ya4yg3ld3ly73mpxrkn2gq9acamclhqvhxsv7zd6")))) + (build-system python-build-system) + (home-page "https://github.com/Kami/python-test-utils/") + (synopsis "Utilities for functional and integration tests") + (description + "This package provides a collection of utility functions and classes +which make writing and running functional and integration tests easier.") + (license license:asl2.0))) + (define-public python-sybil (package (name "python-sybil") |