Skip to content

Commit

Permalink
Include stats on warmups (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Oct 30, 2023
1 parent 400bfc8 commit a81aead
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyperf/_worker.py
Expand Up @@ -59,8 +59,8 @@ def _compute_values(self, values, nvalue,
task_func = self.task_func

# If we are on a pystats build, turn on stats collection around the
# actual work, but only if we aren't warming up or calibrating.
if hasattr(sys, "_stats_on") and not is_warmup and not calibrate_loops:
# actual work, except when calibrating.
if hasattr(sys, "_stats_on") and not calibrate_loops:
core_task_func = task_func

def stats_func(*args):
Expand Down

0 comments on commit a81aead

Please sign in to comment.