pytest-bec-e2e 3.121.0__tar.gz → 3.121.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-bec-e2e
3
- Version: 3.121.0
3
+ Version: 3.121.1
4
4
  Summary: BEC pytest plugin for end-to-end tests
5
5
  Project-URL: Bug Tracker, https://github.com/bec-project/bec/issues
6
6
  Project-URL: Homepage, https://github.com/bec-project/bec
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "pytest-bec-e2e"
7
- version = "3.121.0"
7
+ version = "3.121.1"
8
8
  description = "BEC pytest plugin for end-to-end tests"
9
9
  requires-python = ">=3.11"
10
10
  classifiers = [
@@ -31,6 +31,7 @@ Homepage = "https://github.com/bec-project/bec"
31
31
 
32
32
 
33
33
 
34
+
34
35
  [tool.hatch.build.targets.wheel]
35
36
  include = ["*"]
36
37
 
@@ -69,8 +69,8 @@ def pytest_addoption(parser):
69
69
  redis_server_fixture = None
70
70
  bec_redis_fixture = None
71
71
  _start_servers = False
72
- bec_servers_scope = (
73
- lambda fixture_name, config: config.getoption("--flush-redis") and "function" or "session"
72
+ bec_servers_scope = lambda fixture_name, config: (
73
+ config.getoption("--flush-redis") and "function" or "session"
74
74
  )
75
75
 
76
76