We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1198fea commit 41a2256Copy full SHA for 41a2256
coverage/collector.py
@@ -374,14 +374,13 @@ def pause(self) -> None:
374
375
def resume(self) -> None:
376
"""Resume tracing after a `pause`."""
377
+ for tracer in self.tracers:
378
+ tracer.start()
379
if self.core.systrace:
380
if self.threading:
381
self.threading.settrace(self._installation_trace)
382
else:
383
self._start_tracer()
- else:
- for tracer in self.tracers:
384
- tracer.start()
385
386
def post_fork(self) -> None:
387
"""After a fork, tracers might need to adjust."""
0 commit comments