locust-cloud 1.24.1.dev2__py3-none-any.whl → 1.24.2__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_cloud/cloud.py CHANGED
@@ -27,6 +27,13 @@ def configure_logging(loglevel: str) -> None:
27
27
  logging.getLogger("urllib3").setLevel(logging.INFO)
28
28
 
29
29
 
30
+ def deprecated_main():
31
+ import sys
32
+
33
+ print("`locust-cloud` is deprecated; use `locust --cloud` instead.", file=sys.stderr)
34
+ return 1
35
+
36
+
30
37
  def main(locustfiles: list[str] | None = None):
31
38
  options, locust_options = combined_cloud_parser.parse_known_args()
32
39
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: locust-cloud
3
- Version: 1.24.1.dev2
3
+ Version: 1.24.2
4
4
  Summary: Locust Cloud
5
5
  Project-URL: homepage, https://locust.cloud
6
6
  Project-URL: repository, https://github.com/locustcloud/locust-cloud
@@ -2,7 +2,7 @@ locust_cloud/__init__.py,sha256=6z2hE5rUP9WJyYgr-7XC2GhIV-05m8XxjOsnb8ae1WY,56
2
2
  locust_cloud/actions.py,sha256=lMxKZCwfcsbYf9t5ti20QP60gKt8HHwyz8yjYm0H-a8,762
3
3
  locust_cloud/apisession.py,sha256=JkXiGEtJCBxOW11P0KGr0AUc_AmfqAlO5SijC0zf85w,4368
4
4
  locust_cloud/args.py,sha256=NUHgPBoLCuMXOclHPce-ABVmPGB1tJM-Q5BOUlbqI3M,10865
5
- locust_cloud/cloud.py,sha256=krBZKDGjlUEzsnBwJKPYnfP_gXnNcNrL4l1SLdVMyA4,6035
5
+ locust_cloud/cloud.py,sha256=yBIfSt-ldpmqgo56cWOMlvFYzu2S7W2JPnjkOZ8pdMs,6179
6
6
  locust_cloud/common.py,sha256=GVKkWcbbqd9n8oU-fHZRVZw3jGtuIVGSCLD2ZizeEo0,1160
7
7
  locust_cloud/input_events.py,sha256=6gariDmjZfqQZDFOO_AbrqqMpDesQALEKfXZ3Lps6GQ,3417
8
8
  locust_cloud/web_login.py,sha256=2RC2NHczVdlz2bzmcPDDOR5UbL5ymBK2DUeo_5V6gY0,2553
@@ -12,8 +12,8 @@ locust_cloud/docs/1-first-run.rst,sha256=4CyEoreZfbuon30bRocx7mmKWEso-pVQeWqPiRW
12
12
  locust_cloud/docs/2-examples.rst,sha256=urm5twTrQahpkclXee7OOPf2q5DEHYzFA_BDu3HJCCA,10557
13
13
  locust_cloud/docs/locust-cloud.rst,sha256=KwolrGHH4RtU7VvzO6-QRAJu-ekPPR6XVzdf8i9qZGM,156
14
14
  locust_cloud/docs/images/locust-cloud-screenshot.png,sha256=ag0IxBi-40VexC84MApol1GCgRCL2h-l8NQDTMaeTyE,477350
15
- locust_cloud-1.24.1.dev2.dist-info/METADATA,sha256=h8wA_edPuhhk4EQwQZ2x8y7oaxBEuqBLG8KKjo9i6ms,827
16
- locust_cloud-1.24.1.dev2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
17
- locust_cloud-1.24.1.dev2.dist-info/entry_points.txt,sha256=PGyAb4e3aTsGS3N3VGShDl6VzJaXy7QwsEgsLOC7V00,57
18
- locust_cloud-1.24.1.dev2.dist-info/licenses/LICENSE,sha256=Ow6fY6ta4KIjdlWalmxGvRP8yLmetvkbkl-SdHMjPIs,1093
19
- locust_cloud-1.24.1.dev2.dist-info/RECORD,,
15
+ locust_cloud-1.24.2.dist-info/METADATA,sha256=QkCElLeK85Thj1Ka9PKUDKdxAroUgCyq7SEXrt-hWlo,822
16
+ locust_cloud-1.24.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
17
+ locust_cloud-1.24.2.dist-info/entry_points.txt,sha256=cW-iUw13jEm-3cYOi5ISE1rpwrA52d1qoGbiqSqEH0E,68
18
+ locust_cloud-1.24.2.dist-info/licenses/LICENSE,sha256=Ow6fY6ta4KIjdlWalmxGvRP8yLmetvkbkl-SdHMjPIs,1093
19
+ locust_cloud-1.24.2.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ locust-cloud = locust_cloud.cloud:deprecated_main
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- locust-cloud = locust_cloud.cloud:main