locust 2.31.9.dev30__py3-none-any.whl → 2.31.9.dev36__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 +1 -0
- locust/web.py +2 -0
- locust/webui/dist/assets/{index-CN0UQec-.js → index-C35vpr6y.js} +51 -51
- locust/webui/dist/auth.html +1 -1
- locust/webui/dist/index.html +1 -1
- {locust-2.31.9.dev30.dist-info → locust-2.31.9.dev36.dist-info}/METADATA +1 -1
- {locust-2.31.9.dev30.dist-info → locust-2.31.9.dev36.dist-info}/RECORD +11 -11
- {locust-2.31.9.dev30.dist-info → locust-2.31.9.dev36.dist-info}/LICENSE +0 -0
- {locust-2.31.9.dev30.dist-info → locust-2.31.9.dev36.dist-info}/WHEEL +0 -0
- {locust-2.31.9.dev30.dist-info → locust-2.31.9.dev36.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.9.
|
17
|
+
__version__ = "2.31.9.dev36"
|
18
18
|
version = __version__
|
19
|
-
__version_tuple__ = (2, 31, 9, "
|
19
|
+
__version_tuple__ = (2, 31, 9, "dev36")
|
20
20
|
version_tuple = __version_tuple__
|
locust/main.py
CHANGED
locust/web.py
CHANGED
@@ -645,6 +645,8 @@ class WebUI:
|
|
645
645
|
self.environment.shape_class
|
646
646
|
and not (self.userclass_picker_is_active or self.environment.shape_class.use_common_options)
|
647
647
|
),
|
648
|
+
"shape_use_common_options": self.environment.shape_class
|
649
|
+
and self.environment.shape_class.use_common_options,
|
648
650
|
"stats_history_enabled": options and options.stats_history_enabled,
|
649
651
|
"tasks": dumps({}),
|
650
652
|
"extra_options": extra_options,
|