[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
193/233: gnu: python-locust: Update to 2.8.6.
From: |
guix-commits |
Subject: |
193/233: gnu: python-locust: Update to 2.8.6. |
Date: |
Sun, 24 Apr 2022 23:40:04 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit cd5c33ed5205ee1e183081d8b6326b71c13221b4
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Apr 19 17:39:37 2022 -0400
gnu: python-locust: Update to 2.8.6.
* gnu/packages/benchmark.scm (python-locust): Update to 2.8.6.
[phases]{relax-requirements}: New phase.
{check}: Skip the test_distributed_shape test.
[propagated-inputs]: Add python-jinja2.
---
gnu/packages/benchmark.scm | 24 +++++++++++++++++++-----
1 file changed, 19 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm
index ce137d845e..bfc55a5d13 100644
--- a/gnu/packages/benchmark.scm
+++ b/gnu/packages/benchmark.scm
@@ -265,18 +265,25 @@ file metadata operations that can be performed per
second.")
(define-public python-locust
(package
(name "python-locust")
- (version "2.5.1")
+ (version "2.8.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "locust" version))
(sha256
(base32
- "1516z6z5pikybg7pma2cgxgj3wxaaky7z6d30mxf81wd4krbq16s"))))
+ "1gn13j758j36knlcdyyyggn60rpw98iqdkvl3kjsz34brysic6q1"))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "setup.py"
+ (("setuptools_scm<=6.0.1")
+ "setuptools_scm")
+ (("Jinja2<3.1.0")
+ "Jinja2"))))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
@@ -298,7 +305,10 @@ file metadata operations that can be performed per
second.")
;; respectively (see:
;;
https://github.com/locustio/locust/issues/1708).
"not test_custom_exit_code"
- "not test_webserver") " and "))))))))
+ "not test_webserver"
+ ;; This test fails with "AssertionError:
+ ;; 'stopped' != 'stopping'".
+ "not test_distributed_shape") " and "))))))))
(propagated-inputs
(list python-configargparse
python-flask
@@ -306,6 +316,7 @@ file metadata operations that can be performed per second.")
python-flask-cors
python-gevent
python-geventhttpclient
+ python-jinja2
python-msgpack
python-psutil
python-pyzmq
@@ -314,8 +325,11 @@ file metadata operations that can be performed per
second.")
python-typing-extensions
python-werkzeug))
(native-inputs
- (list python-mock python-pyquery python-pytest
- python-retry python-setuptools-scm))
+ (list python-mock
+ python-pyquery
+ python-pytest
+ python-retry
+ python-setuptools-scm))
(home-page "https://locust.io/")
(synopsis "Distributed load testing framework")
(description "Locust is a performance testing tool that aims to be easy to
- 184/233: gnu: sshoot: Update to 1.5.1., (continued)
- 184/233: gnu: sshoot: Update to 1.5.1., guix-commits, 2022/04/24
- 186/233: gnu: Add python-mergedeep., guix-commits, 2022/04/24
- 194/233: gnu: Remove python2-jmespath., guix-commits, 2022/04/24
- 133/233: gnu: python-websockets: Update to 10.3 and enable tests., guix-commits, 2022/04/24
- 204/233: gnu: emacsy: Use webkitgtk-with-libsoup2., guix-commits, 2022/04/24
- 219/233: gnu: python-sphinxcontrib-programoutput: Update to 0.17 and enable tests., guix-commits, 2022/04/24
- 225/233: gnu: python-sphinxext-opengraph: Update to 0.6.3., guix-commits, 2022/04/24
- 227/233: gnu: python-numpy-documentation: Overhaul package definition., guix-commits, 2022/04/24
- 131/233: gnu: Add texlive-xindy., guix-commits, 2022/04/24
- 139/233: gnu: python-httpcore: Update to 0.14.7 and enable tests., guix-commits, 2022/04/24
- 193/233: gnu: python-locust: Update to 2.8.6.,
guix-commits <=
- 207/233: gnu: python-pingouin: Update to 0.5.1., guix-commits, 2022/04/24
- 125/233: gnu: texlive-polyglossia: Rename and fix package., guix-commits, 2022/04/24
- 144/233: gnu: Add python-socksio., guix-commits, 2022/04/24
- 145/233: gnu: python-sqlalchemy: Run tests in parallel via xdist., guix-commits, 2022/04/24
- 146/233: gnu: python-sqlalchemy: Update to 1.4.35., guix-commits, 2022/04/24
- 153/233: gnu: Add python-jupyterlab-server., guix-commits, 2022/04/24
- 158/233: gnu: python-pandas: Build and run tests in parallel., guix-commits, 2022/04/24
- 162/233: gnu: python-umap-learn: Update to 0.5.3., guix-commits, 2022/04/24
- 167/233: gnu: python-jupyter-protocol: Update to 0.2.0., guix-commits, 2022/04/24
- 170/233: gnu: python-types-dataclasses: Fix typo., guix-commits, 2022/04/24