locust 2.37.13.dev5__py3-none-any.whl → 2.37.13.dev12__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
locust/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '2.37.13.dev5'
21
- __version_tuple__ = version_tuple = (2, 37, 13, 'dev5')
20
+ __version__ = version = '2.37.13.dev12'
21
+ __version_tuple__ = version_tuple = (2, 37, 13, 'dev12')
@@ -378,7 +378,17 @@ class FastHttpUser(User):
378
378
  """Parameter passed to FastHttpSession"""
379
379
 
380
380
  client_pool: HTTPClientPool | None = None
381
- """HTTP client pool to use. If not given, a new pool is created per single user."""
381
+ """HTTP client pool to use. If not given, a new pool is created per single user.
382
+
383
+ For example, to have all instances of MyUser share a single HTTP client pool with concurrency of 5, you would do:
384
+
385
+ .. code-block:: python
386
+
387
+ from geventhttpclient.client import HTTPClientPool
388
+
389
+ class MyUser(FastHttpUser):
390
+ client_pool = HTTPClientPool(concurrency=5)
391
+ """
382
392
 
383
393
  ssl_context_factory: Callable | None = None
384
394
  """A callable that return a SSLContext for overriding the default context created by the FastHttpSession."""
locust/main.py CHANGED
@@ -674,7 +674,7 @@ See https://github.com/locustio/locust/wiki/Installation#increasing-maximum-numb
674
674
 
675
675
  try:
676
676
  if options.class_picker:
677
- logger.info("Locust is running with the UserClass Picker Enabled")
677
+ logger.debug("Locust is running with the UserClass Picker Enabled")
678
678
  if options.autostart and not options.headless:
679
679
  start_automatic_run()
680
680
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: locust
3
- Version: 2.37.13.dev5
3
+ Version: 2.37.13.dev12
4
4
  Summary: Developer-friendly load testing framework
5
5
  Project-URL: homepage, https://locust.io/
6
6
  Project-URL: repository, https://github.com/locustio/locust
@@ -30,7 +30,7 @@ Requires-Dist: flask-login>=0.6.3
30
30
  Requires-Dist: flask>=2.0.0
31
31
  Requires-Dist: gevent<26.0.0,>=24.10.1
32
32
  Requires-Dist: geventhttpclient>=2.3.1
33
- Requires-Dist: locust-cloud>=1.25.1
33
+ Requires-Dist: locust-cloud>=1.26.0
34
34
  Requires-Dist: msgpack>=1.0.0
35
35
  Requires-Dist: psutil>=5.9.1
36
36
  Requires-Dist: pywin32; sys_platform == 'win32'
@@ -1,6 +1,6 @@
1
1
  locust/__init__.py,sha256=aWeuBPUxONjwNm1xp4v8L4BO14SuYLjscIiwJVX1Ui4,1746
2
2
  locust/__main__.py,sha256=vBQ82334kX06ImDbFlPFgiBRiLIinwNk3z8Khs6hd74,31
3
- locust/_version.py,sha256=EYQkbr3tyqCJRTphGT2M22re3lpd38nlNITjjT9afz0,528
3
+ locust/_version.py,sha256=9h4FUIyecs9AauVocTekt0BXW1qveU9ha7uboDUINig,530
4
4
  locust/argument_parser.py,sha256=oO2Hi13tp_vRqOCQoA44l9qwP1Zeg-0KcnkynvwDqBM,33083
5
5
  locust/clients.py,sha256=o-277lWQdpmPnoRTdf3IQVNPQT8LMFDtPtuxbLHQIIs,19286
6
6
  locust/debug.py,sha256=7CCm8bIg44uGH2wqBlo1rXBzV2VzwPicLxLewz8r5CQ,5099
@@ -11,14 +11,14 @@ locust/exception.py,sha256=jGgJ32ubuf4pWdlaVOkbh2Y0LlG0_DHi-lv3ib8ppOE,1791
11
11
  locust/html.py,sha256=VjoAEZEolJ8il4HLACBlVA81Qk36fBwlDj_7ojAEFss,4132
12
12
  locust/input_events.py,sha256=lqLDB2Ax-OQ7-vtYNkGjySjfaWVobBzqf0GxRwjcLcQ,3323
13
13
  locust/log.py,sha256=5E2ZUOa3V4sfCqa-470Gle1Ik9L5nxYitsjEB9tRwE0,3455
14
- locust/main.py,sha256=vfJ6PxjGaVyQarybq44nRlhrkoUV51hzpNoXWkPMLGk,28496
14
+ locust/main.py,sha256=P9r-CxA3Hr1U3JKU9WsMkc-Mf5PTeW7JfclezXP3nqY,28497
15
15
  locust/py.typed,sha256=gkWLl8yD4mIZnNYYAIRM8g9VarLvWmTAFeUfEbxJLBw,65
16
16
  locust/runners.py,sha256=niYmGsfOpxMfVmTXGod4MYTefpaZ2wirFlhqxRw5mq4,70617
17
17
  locust/shape.py,sha256=t-lwBS8LOjWcKXNL7j2U3zroIXJ1b0fazUwpRYQOKXw,1973
18
18
  locust/stats.py,sha256=1BDBENgh8iFw20boDP_xEV6PxlQqdJwKnRAe4K3YyfA,47438
19
19
  locust/web.py,sha256=hOCKszrXyzFe9S3T_e9q9MjsPz5yqvuEad24qMHrpOw,31501
20
20
  locust/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- locust/contrib/fasthttp.py,sha256=tcsGibYf3UpQvfhf4crEfiPETFEpttSdJ8RurDHNSko,29351
21
+ locust/contrib/fasthttp.py,sha256=04rnf4kxRxVbzOyqDlb-io43dWIyMPMUwmQ7DOFo2Lo,29656
22
22
  locust/contrib/mongodb.py,sha256=1seUYgJOaNKwybYOP9PUEVhgl8hGy-G33f8lFj3R8W8,1246
23
23
  locust/contrib/oai.py,sha256=Ot3T8lp31ThckGbNps86oVvq6Vn845Eec0mxhDmONDE,2684
24
24
  locust/contrib/postgres.py,sha256=OuMWnGYN10K65Tq2axVESEW25Y0g5gJb0rK90jkcCJg,1230
@@ -51,8 +51,8 @@ locust/webui/dist/assets/graphs-light.png,sha256=7L6pOehXqCojQclzeP91l-LskFQAw_n
51
51
  locust/webui/dist/assets/index-WNIG7Am1.js,sha256=hNRXOmLKo631cff7JMRgD9vofHD3cWm2-toThBRnUhU,1723585
52
52
  locust/webui/dist/assets/testruns-dark.png,sha256=np6MvpgJ2gkKQ66SOmukLtjsMtHqTSr5dNfza-2XtCo,267621
53
53
  locust/webui/dist/assets/testruns-light.png,sha256=iLAxBZh3kRsfGkcB1-1KSAbFgGji43IqiUrYuJlUoPk,276839
54
- locust-2.37.13.dev5.dist-info/METADATA,sha256=CpOtitZDKc5nCqlba3u4db_KfbBxHu99gTspTW8ADHg,9404
55
- locust-2.37.13.dev5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
56
- locust-2.37.13.dev5.dist-info/entry_points.txt,sha256=RAdt8Ku-56m7bFjmdj-MBhbF6h4NX7tVODR9QNnOg0E,44
57
- locust-2.37.13.dev5.dist-info/licenses/LICENSE,sha256=5hnz-Vpj0Z3kSCQl0LzV2hT1TLc4LHcbpBp3Cy-EuyM,1110
58
- locust-2.37.13.dev5.dist-info/RECORD,,
54
+ locust-2.37.13.dev12.dist-info/METADATA,sha256=u_P3nhwbNIcU6MNOqX_sVMgKBjZZqGErI_1M1GzJGZ8,9405
55
+ locust-2.37.13.dev12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
56
+ locust-2.37.13.dev12.dist-info/entry_points.txt,sha256=RAdt8Ku-56m7bFjmdj-MBhbF6h4NX7tVODR9QNnOg0E,44
57
+ locust-2.37.13.dev12.dist-info/licenses/LICENSE,sha256=5hnz-Vpj0Z3kSCQl0LzV2hT1TLc4LHcbpBp3Cy-EuyM,1110
58
+ locust-2.37.13.dev12.dist-info/RECORD,,