Skip to content

Commit 0b255fb

Browse files
committed
fix: restore number of runs
1 parent 051b216 commit 0b255fb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ See the [requirements.txt](requirements.txt) file for exact modules being tested
88

99
## Results
1010

11-
- 🐧 [GNU/Linux](results/linux.md) (spoiler: `python-rapidjson` :tada:)
12-
- 🍎 [macOS](results/mac.md) (spoiler: `python-rapidjson` :tada:)
13-
- 🪟 [Windows](results/windows.md) (spoiler: `ujson` :tada:)
11+
- 🐧 [GNU/Linux](results/linux.md)
12+
- 🍎 [macOS](results/mac.md)
13+
- 🪟 [Windows](results/windows.md)
1414

1515
## Not An Option
1616

bench-json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def run(stmt: str, setup: str) -> float:
8585
timeit(setup=setup, number=1)
8686
except (AssertionError, ImportError, OverflowError, TypeError, ValueError):
8787
return 0.0
88-
return timeit(stmt=stmt, setup=setup, number=100_000)
88+
return timeit(stmt=stmt, setup=setup)
8989

9090

9191
def res(value: float, justification: int = 6) -> str:

0 commit comments

Comments
 (0)