Skip to content

Commit

Permalink
Much worse perf limit for old tests due to weaker GH action container
Browse files Browse the repository at this point in the history
  • Loading branch information
vlasovskikh committed Dec 16, 2024
1 parent c26703f commit 57356c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_performance(puzzle: str, puzzle_runs: dict[str, float]) -> None:
return
mean = statistics.mean(no_outliers.values())
t = puzzle_runs[puzzle]
limit = mean * 30
limit = mean * 200
assert t <= limit, (
f"Time limit exceeded for {puzzle!r}: "
f"time: {t:.3f}, limit: {limit:.3f}, mean: {mean:.3f}"
Expand Down

0 comments on commit 57356c0

Please sign in to comment.