(fn)
| 270 | errors_lock = threading.Lock() |
| 271 | |
| 272 | def wrapper(fn): |
| 273 | def wrapped(): |
| 274 | try: |
| 275 | barrier.wait() |
| 276 | fn() |
| 277 | except Exception as exc: |
| 278 | with errors_lock: |
| 279 | errors.append(repr(exc)) |
| 280 | return wrapped |
| 281 | |
| 282 | threads = [] |
| 283 | for fn, count in zip(target_fns, thread_counts): |
no outgoing calls
no test coverage detected
searching dependent graphs…