Skip to content

Commit 6e1d63e

Browse files
committed
feat: increase the min round time to a bigger value (+/- 1ms)
1 parent cc10330 commit 6e1d63e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytest_codspeed/instruments/walltime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
DEFAULT_WARMUP_TIME_NS = 1_000_000_000
2525
DEFAULT_MAX_TIME_NS = 3_000_000_000
2626
TIMER_RESOLUTION_NS = get_clock_info("perf_counter").resolution * 1e9
27-
DEFAULT_MIN_ROUND_TIME_NS = TIMER_RESOLUTION_NS * 100
27+
DEFAULT_MIN_ROUND_TIME_NS = TIMER_RESOLUTION_NS * 1_000_000
2828

2929

3030
@dataclass

0 commit comments

Comments
 (0)