From 2ba684da72901202a6cd4873023e15fa3fc2c238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9renger=20Berthoul?= Date: Thu, 3 Oct 2024 13:24:11 +0200 Subject: [PATCH] minor. remove print() --- pytest_parallel/process_worker.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pytest_parallel/process_worker.py b/pytest_parallel/process_worker.py index c700878..a3c7f22 100644 --- a/pytest_parallel/process_worker.py +++ b/pytest_parallel/process_worker.py @@ -18,7 +18,6 @@ def __init__(self, scheduler_ip_address, scheduler_port, test_idx, detach): @pytest.hookimpl(tryfirst=True) def pytest_runtestloop(self, session) -> bool: comm = MPI.COMM_WORLD - print("\n\n\nwololo",[item.name for item in session.items]) assert len(session.items) == 1, f'INTERNAL FATAL ERROR in pytest_parallel with slurm scheduling: should only have one test per worker, but got {len(session.items)}' item = session.items[0] test_comm_size = get_n_proc_for_test(item)