pytest-bec-e2e 3.26.0__tar.gz → 3.28.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-bec-e2e
3
- Version: 3.26.0
3
+ Version: 3.28.0
4
4
  Summary: BEC pytest plugin for end-to-end tests
5
5
  Project-URL: Bug Tracker, https://gitlab.psi.ch/bec/bec/issues
6
6
  Project-URL: Homepage, https://gitlab.psi.ch/bec/bec
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "pytest-bec-e2e"
7
- version = "3.26.0"
7
+ version = "3.28.0"
8
8
  description = "BEC pytest plugin for end-to-end tests"
9
9
  requires-python = ">=3.10"
10
10
  classifiers = [
@@ -178,10 +178,12 @@ def bec_servers(
178
178
  from bec_server.bec_server_utils.service_handler import ServiceHandler
179
179
 
180
180
  # Start all BEC servers, kill them at the end
181
- # when no_tmux=True, 'bec_path' indicate the cwd
181
+ # when interface='subprocess', 'bec_path' indicate the cwd
182
182
  # for the process (working directory), i.e. where log files will go
183
183
  service_handler = ServiceHandler(
184
- bec_path=bec_files_path, config_path=bec_services_config_file_path, no_tmux=True
184
+ bec_path=bec_files_path,
185
+ config_path=bec_services_config_file_path,
186
+ interface="subprocess",
185
187
  )
186
188
  processes = service_handler.start()
187
189
  try: