Skip to content

Commit 7944af3

Browse files
authored
feat: Add black formatter to the project (#1544)
Add black formatter and run it on pytests
1 parent 9448220 commit 7944af3

21 files changed

+796
-569
lines changed

.pre-commit-config.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,8 @@ repos:
2424
hooks:
2525
- id: clang-format
2626
name: Clang formatting
27+
28+
- repo: https://github.com/psf/black
29+
rev: 23.7.0
30+
hooks:
31+
- id: black

pyproject.toml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[tool.black]
2+
line-length = 100
3+
include = '\.py$'
4+
extend-exclude = '''
5+
/(
6+
| .git
7+
| .__pycache__
8+
| build-dbg
9+
| build-opt
10+
| helio
11+
)/
12+
'''

tests/dragonfly/__init__.py

+17-13
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self, params: DflyParams, args):
3434
self.args = args
3535
self.params = params
3636
self.proc = None
37-
self._client : Optional[RedisClient] = None
37+
self._client: Optional[RedisClient] = None
3838

3939
def client(self) -> RedisClient:
4040
return RedisClient(port=self.port)
@@ -70,8 +70,7 @@ def _start(self):
7070
return
7171
base_args = [f"--{v}" for v in self.params.args]
7272
all_args = self.format_args(self.args) + base_args
73-
print(
74-
f"Starting instance on {self.port} with arguments {all_args} from {self.params.path}")
73+
print(f"Starting instance on {self.port} with arguments {all_args} from {self.params.path}")
7574

7675
run_cmd = [self.params.path, *all_args]
7776
if self.params.gdb:
@@ -82,8 +81,7 @@ def _check_status(self):
8281
if not self.params.existing_port:
8382
return_code = self.proc.poll()
8483
if return_code is not None:
85-
raise Exception(
86-
f"Failed to start instance, return code {return_code}")
84+
raise Exception(f"Failed to start instance, return code {return_code}")
8785

8886
def __getitem__(self, k):
8987
return self.args.get(k)
@@ -93,11 +91,13 @@ def port(self) -> int:
9391
if self.params.existing_port:
9492
return self.params.existing_port
9593
return int(self.args.get("port", "6379"))
94+
9695
@property
9796
def admin_port(self) -> int:
9897
if self.params.existing_admin_port:
9998
return self.params.existing_admin_port
10099
return int(self.args.get("admin_port", "16379"))
100+
101101
@property
102102
def mc_port(self) -> int:
103103
if self.params.existing_mc_port:
@@ -107,7 +107,7 @@ def mc_port(self) -> int:
107107
@staticmethod
108108
def format_args(args):
109109
out = []
110-
for (k, v) in args.items():
110+
for k, v in args.items():
111111
out.append(f"--{k}")
112112
if v is not None:
113113
out.append(str(v))
@@ -118,7 +118,10 @@ async def metrics(self):
118118
resp = await session.get(f"http://localhost:{self.port}/metrics")
119119
data = await resp.text()
120120
await session.close()
121-
return {metric_family.name : metric_family for metric_family in text_string_to_metric_families(data)}
121+
return {
122+
metric_family.name: metric_family
123+
for metric_family in text_string_to_metric_families(data)
124+
}
122125

123126

124127
class DflyInstanceFactory:
@@ -142,7 +145,7 @@ def create(self, **kwargs) -> DflyInstance:
142145
return instance
143146

144147
def start_all(self, instances):
145-
""" Start multiple instances in parallel """
148+
"""Start multiple instances in parallel"""
146149
for instance in instances:
147150
instance._start()
148151

@@ -162,17 +165,17 @@ def __str__(self):
162165

163166

164167
def dfly_args(*args):
165-
""" Used to define a singular set of arguments for dragonfly test """
168+
"""Used to define a singular set of arguments for dragonfly test"""
166169
return pytest.mark.parametrize("df_factory", args, indirect=True)
167170

168171

169172
def dfly_multi_test_args(*args):
170-
""" Used to define multiple sets of arguments to test multiple dragonfly configurations """
173+
"""Used to define multiple sets of arguments to test multiple dragonfly configurations"""
171174
return pytest.mark.parametrize("df_factory", args, indirect=True)
172175

173176

174-
class PortPicker():
175-
""" A simple port manager to allocate available ports for tests """
177+
class PortPicker:
178+
"""A simple port manager to allocate available ports for tests"""
176179

177180
def __init__(self):
178181
self.next_port = 5555
@@ -185,5 +188,6 @@ def get_available_port(self):
185188

186189
def is_port_available(self, port):
187190
import socket
191+
188192
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
189-
return s.connect_ex(('localhost', port)) != 0
193+
return s.connect_ex(("localhost", port)) != 0

0 commit comments

Comments
 (0)