Skip to content

Commit 3e10007

Browse files
authored
Skip the genshi benchkmark as it fails with 3.11 (#99)
1 parent a8fbe97 commit 3e10007

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

pyperformance/benchmarks/__init__.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
'dulwich_log',
1616
'fannkuch',
1717
'float',
18-
'genshi',
18+
19+
# FIXME: this benchmark fails with:
20+
# TypeError: code() argument 15 must be bytes, not tuple
21+
# 'genshi',
22+
1923
'go',
2024
'hexiom',
2125

@@ -269,8 +273,8 @@ def BM_sqlite_synth(python, options):
269273
return run_perf_script(python, options, "sqlite_synth")
270274

271275

272-
def BM_genshi(python, options):
273-
return run_perf_script(python, options, "genshi")
276+
# def BM_genshi(python, options):
277+
# return run_perf_script(python, options, "genshi")
274278

275279

276280
def BM_sqlalchemy_declarative(python, options):

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# FIXME:
44
#
55
# - REENABLE HG_STARTUP BENCHMARK.
6+
# - REENABLE GENSHI BENCHMARK.
67
#
78
# Update dependencies:
89
#

0 commit comments

Comments
 (0)