locust 2.31.5.dev83__py3-none-any.whl → 2.31.6.dev1__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 +2 -2
- locust/main.py +6 -4
- {locust-2.31.5.dev83.dist-info → locust-2.31.6.dev1.dist-info}/METADATA +1 -1
- {locust-2.31.5.dev83.dist-info → locust-2.31.6.dev1.dist-info}/RECORD +7 -7
- {locust-2.31.5.dev83.dist-info → locust-2.31.6.dev1.dist-info}/LICENSE +0 -0
- {locust-2.31.5.dev83.dist-info → locust-2.31.6.dev1.dist-info}/WHEEL +0 -0
- {locust-2.31.5.dev83.dist-info → locust-2.31.6.dev1.dist-info}/entry_points.txt +0 -0
locust/_version.py
CHANGED
@@ -14,7 +14,7 @@ __version_tuple__: VERSION_TUPLE
|
|
14
14
|
version_tuple: VERSION_TUPLE
|
15
15
|
|
16
16
|
|
17
|
-
__version__ = "2.31.
|
17
|
+
__version__ = "2.31.6.dev1"
|
18
18
|
version = __version__
|
19
|
-
__version_tuple__ = (2, 31,
|
19
|
+
__version_tuple__ = (2, 31, 6, "dev1")
|
20
20
|
version_tuple = __version_tuple__
|
locust/main.py
CHANGED
@@ -39,12 +39,14 @@ from .util.timespan import parse_timespan
|
|
39
39
|
# import external plugins if installed to allow for registering custom arguments etc
|
40
40
|
try:
|
41
41
|
import locust_plugins # pyright: ignore[reportMissingImports]
|
42
|
-
except ModuleNotFoundError:
|
43
|
-
|
42
|
+
except ModuleNotFoundError as e:
|
43
|
+
if e.msg != "No module named 'locust_plugins'":
|
44
|
+
raise
|
44
45
|
try:
|
45
46
|
import locust_cloud # pyright: ignore[reportMissingImports]
|
46
|
-
except ModuleNotFoundError:
|
47
|
-
|
47
|
+
except ModuleNotFoundError as e:
|
48
|
+
if e.msg != "No module named 'locust_cloud'":
|
49
|
+
raise
|
48
50
|
|
49
51
|
version = locust.__version__
|
50
52
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
locust/__init__.py,sha256=Jit8eNUrwuMLqavyFvMZr69e61DILq_KB4yT4MciScw,1681
|
2
2
|
locust/__main__.py,sha256=vBQ82334kX06ImDbFlPFgiBRiLIinwNk3z8Khs6hd74,31
|
3
|
-
locust/_version.py,sha256=
|
3
|
+
locust/_version.py,sha256=igYxT57IAJOQCIxvcA4vBpX1SIlaR6pe9Ikg63i--vA,458
|
4
4
|
locust/argument_parser.py,sha256=NPdS1TzhN0C6W5Mc0b1lUbQsEhVoTWK4q1-ol1PjPeo,28963
|
5
5
|
locust/clients.py,sha256=OHPv6hBAt4gt3HI67yqyT1qrSsF8uMdCwIRu0kIsRWI,19491
|
6
6
|
locust/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -14,7 +14,7 @@ locust/exception.py,sha256=jGgJ32ubuf4pWdlaVOkbh2Y0LlG0_DHi-lv3ib8ppOE,1791
|
|
14
14
|
locust/html.py,sha256=ioHs8R6aqK_XCBSv4fOV90PYWv_MYQuW9Pl71R6EidM,3496
|
15
15
|
locust/input_events.py,sha256=ZIyePyAMuA_YFYWg18g_pE4kwuQV3RbEB250MzXRwjY,3314
|
16
16
|
locust/log.py,sha256=Wrkn0Ibugh5Sqjm4hGQ2-jUsy1tNMBdTctp4FyXQI24,3457
|
17
|
-
locust/main.py,sha256=
|
17
|
+
locust/main.py,sha256=JpBo-TKv3O8mjh-6JPsF1jwLpJj9_UcRdBigGCK6OxU,29006
|
18
18
|
locust/py.typed,sha256=gkWLl8yD4mIZnNYYAIRM8g9VarLvWmTAFeUfEbxJLBw,65
|
19
19
|
locust/rpc/__init__.py,sha256=nVGoHWFQxZjnhCDWjbgXIbmFbN9sizAjkhvSs9_642c,58
|
20
20
|
locust/rpc/protocol.py,sha256=n-rb3GZQcAlldYDj4E4GuFGylYj_26GSS5U29meft5Y,1282
|
@@ -46,8 +46,8 @@ locust/webui/dist/auth.html,sha256=lFK2hUASKiH4veqEKI8SVpVcv75L07iLgdsx1usfPRo,6
|
|
46
46
|
locust/webui/dist/index.html,sha256=w1ar7WpzWHSVkgoL5n6IPCOvAgWfmOChoYofr2xsey0,654
|
47
47
|
locust/webui/dist/report.html,sha256=bjpe_eyweJLqLk7REsQOdOPp7e8PoGRajD5P8gIJeNE,1472409
|
48
48
|
poetry.lock,sha256=75mAZUOjR_vaUkfY3u89SimmXI8d2hiaNSKRY8kuzKU,204814
|
49
|
-
locust-2.31.
|
50
|
-
locust-2.31.
|
51
|
-
locust-2.31.
|
52
|
-
locust-2.31.
|
53
|
-
locust-2.31.
|
49
|
+
locust-2.31.6.dev1.dist-info/LICENSE,sha256=78XGpIn3fHVBfaxlPNUfjVufSN7QsdhpJMRJHv2AFpo,1095
|
50
|
+
locust-2.31.6.dev1.dist-info/METADATA,sha256=qwfJWl2YCeIStbAR0RL3gbiJq95BfYrmxV53cFjTO_I,7678
|
51
|
+
locust-2.31.6.dev1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
52
|
+
locust-2.31.6.dev1.dist-info/entry_points.txt,sha256=RhIxlLwU_Ae_WjimS5COUDLagdCh6IOMyLtgaQxNmlM,43
|
53
|
+
locust-2.31.6.dev1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|