Skip to content

Commit 4a1334d

Browse files
author
Roman
committed
ruff
1 parent 2e70708 commit 4a1334d

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

tests/e2e_tests/conftest.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,18 @@ def stop_existing_test_containers():
168168
"""Stop running Docker containers with names starting with 'test_local_chain_'."""
169169
try:
170170
existing_container_result = subprocess.run(
171-
["docker", "ps", "--filter", f"name={CONTAINER_NAME_PREFIX}", "--format", "{{.ID}}"],
171+
[
172+
"docker",
173+
"ps",
174+
"--filter",
175+
f"name={CONTAINER_NAME_PREFIX}",
176+
"--format",
177+
"{{.ID}}",
178+
],
172179
stdout=subprocess.PIPE,
173180
stderr=subprocess.PIPE,
174181
text=True,
175-
check=True
182+
check=True,
176183
)
177184
container_ids = existing_container_result.stdout.strip().splitlines()
178185
for cid in container_ids:

0 commit comments

Comments
 (0)