me
/
guix
Archived
1
0
Fork 0

gnu: Add python-parameterizedtestcase.

* gnu/packages/python-check.scm (python-parameterizedtestcase): New variable.
master
Ricardo Wurmus 2022-04-07 16:47:46 +02:00
parent c5ee8f6e29
commit a5412de56e
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 1 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2019, 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
@ -1993,6 +1993,25 @@ The purpose of this package is to provide an easy way to test asynchronous
HTTP requests.")
(license license:expat)))
(define-public python-parameterizedtestcase
(package
(name "python-parameterizedtestcase")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "parameterizedtestcase" version))
(sha256
(base32 "0zhjmsd16xacg4vd7zb75kw8q9khn52wvad634v1bvz7swaivk2c"))))
(build-system python-build-system)
(native-inputs (list python-setuptools)) ;for use_2to3
(home-page
"https://github.com/msabramo/python_unittest_parameterized_test_case")
(synopsis "Parameterized tests for Python's unittest module")
(description "This package provides parameterized tests for Python's
@code{unittest} module taking inspiration from pytest.")
(license license:expat)))
(define-public python-pytest-rerunfailures
(package
(name "python-pytest-rerunfailures")