pytest-bec-e2e 2.21.5__tar.gz → 2.22.1__tar.gz
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.
Potentially problematic release.
This version of pytest-bec-e2e might be problematic. Click here for more details.
- {pytest_bec_e2e-2.21.5 → pytest_bec_e2e-2.22.1}/PKG-INFO +1 -1
- {pytest_bec_e2e-2.21.5 → pytest_bec_e2e-2.22.1}/pyproject.toml +1 -1
- {pytest_bec_e2e-2.21.5 → pytest_bec_e2e-2.22.1}/pytest_bec_e2e/plugin.py +2 -2
- {pytest_bec_e2e-2.21.5 → pytest_bec_e2e-2.22.1}/.gitignore +0 -0
- {pytest_bec_e2e-2.21.5 → pytest_bec_e2e-2.22.1}/pytest_bec_e2e/__init__.py +0 -0
|
@@ -203,7 +203,7 @@ def bec_ipython_client_with_demo_config(
|
|
|
203
203
|
config = ServiceConfig(bec_services_config_file_path)
|
|
204
204
|
bec = BECIPythonClient(config, RedisConnector, forced=True)
|
|
205
205
|
bec.start()
|
|
206
|
-
|
|
206
|
+
bec.config.load_demo_config()
|
|
207
207
|
try:
|
|
208
208
|
yield bec
|
|
209
209
|
finally:
|
|
@@ -216,7 +216,7 @@ def bec_client_lib_with_demo_config(bec_redis_fixture, bec_services_config_file_
|
|
|
216
216
|
config = ServiceConfig(bec_services_config_file_path)
|
|
217
217
|
bec = BECClient(config, RedisConnector, forced=True, wait_for_server=True)
|
|
218
218
|
bec.start()
|
|
219
|
-
|
|
219
|
+
bec.config.load_demo_config()
|
|
220
220
|
try:
|
|
221
221
|
yield bec
|
|
222
222
|
finally:
|
|
File without changes
|
|
File without changes
|