Skip to content

Commit b77c019

Browse files
committed
chore: reduce logging in tests
Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk>
1 parent db25547 commit b77c019

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/functional/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,8 @@ def wait_for_sidekiq(gl):
217217
set aside for their deletion in 1 days time.
218218
219219
Use this with asserts for slow tasks (group/project/user creation/deletion).
220+
221+
{ ..., 'labels': [], 'concurrency': 20, 'busy': 3}
220222
"""
221223

222224
def _wait(timeout: int = 30, step: float = 0.5, allow_fail: bool = False) -> bool:
@@ -226,7 +228,6 @@ def _wait(timeout: int = 30, step: float = 0.5, allow_fail: bool = False) -> boo
226228
busy_processes = 0
227229
total_concurrency = 0
228230
for process in processes:
229-
logging.info(f"Process {processes}")
230231
busy_processes += process["busy"]
231232
total_concurrency += process["concurrency"]
232233

0 commit comments

Comments
 (0)