[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/14: gnu: Add python-stestr.
From: |
guix-commits |
Subject: |
08/14: gnu: Add python-stestr. |
Date: |
Fri, 20 Nov 2020 00:25:34 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 30429bc20fb4f211567933cff3319ebb0ed906c3
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Nov 18 15:42:13 2020 -0500
gnu: Add python-stestr.
* gnu/packages/python-check.scm (python-stestr): New variable.
---
gnu/packages/python-check.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index dcd4bb9..cad9a0c 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -28,6 +28,7 @@
(define-module (gnu packages python-check)
#:use-module (gnu packages)
#:use-module (gnu packages check)
+ #:use-module (gnu packages openstack)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages web)
@@ -1078,3 +1079,36 @@ any Python VM with basically no runtime overhead.")
(description "Robber is a Python assertion library for test-driven and
behavior-driven development (TDD and BDD).")
(license license:expat)))
+
+(define-public python-stestr
+ (package
+ (name "python-stestr")
+ (version "3.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "stestr" version))
+ (sha256
+ (base32
+ "0adhqp9c9338wlvlq776k57k04lyxp38bv591afdm9gjsn2qn1zm"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ;to avoid circular dependencies
+ (native-inputs
+ `(("python-pbr" ,python-pbr)))
+ (propagated-inputs
+ `(("python-cliff" ,python-cliff)
+ ("python-fixtures" ,python-fixtures)
+ ("python-future" ,python-future)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-subunit" ,python-subunit)
+ ("python-testtools" ,python-testtools)
+ ("python-voluptuous" ,python-voluptuous)))
+ (home-page "https://stestr.readthedocs.io/en/latest/")
+ (synopsis "Parallel Python test runner")
+ (description "This package provides the @command{stestr} command, a
+parallel Python test runner built around @code{subunit}. It is designed to
+execute @code{unittest} test suites using multiple processes to split up
+execution of a test suite. It will also store a history of all test runs to
+help in debugging failures and optimizing the scheduler to improve speed.")
+ (license license:asl2.0)))
- branch master updated (1464131 -> 8d7dfa1), guix-commits, 2020/11/20
- 01/14: gnu: python-ddt: Update to 1.4.1., guix-commits, 2020/11/20
- 04/14: gnu: python-oslotest: Update to 4.4.1., guix-commits, 2020/11/20
- 03/14: gnu: python-oslotest: Re-indent., guix-commits, 2020/11/20
- 05/14: gnu: python-bandit: Update to 1.6.2., guix-commits, 2020/11/20
- 07/14: gnu: Add python-cliff., guix-commits, 2020/11/20
- 08/14: gnu: Add python-stestr.,
guix-commits <=
- 02/14: gnu: python-stevedore: Update to 3.2.2., guix-commits, 2020/11/20
- 06/14: gnu: python-bandit: Fix indentation., guix-commits, 2020/11/20
- 09/14: gnu: python-subunit-bootstrap: Update to 1.4.0., guix-commits, 2020/11/20
- 10/14: gnu: python-hacking: Update to 4.0.0., guix-commits, 2020/11/20
- 11/14: gnu: python-oslo: Update to 3.1.1., guix-commits, 2020/11/20
- 13/14: gnu: python-oslosphinx: Update to 4.18.0., guix-commits, 2020/11/20
- 14/14: gnu: python-pillow: Update to 8.0.1., guix-commits, 2020/11/20
- 12/14: gnu: python-oslosphinx: Fix indentation., guix-commits, 2020/11/20