We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8fbe97 commit 3e10007Copy full SHA for 3e10007
2 files changed
pyperformance/benchmarks/__init__.py
@@ -15,7 +15,11 @@
15
'dulwich_log',
16
'fannkuch',
17
'float',
18
- 'genshi',
+
19
+ # FIXME: this benchmark fails with:
20
+ # TypeError: code() argument 15 must be bytes, not tuple
21
+ # 'genshi',
22
23
'go',
24
'hexiom',
25
@@ -269,8 +273,8 @@ def BM_sqlite_synth(python, options):
269
273
return run_perf_script(python, options, "sqlite_synth")
270
274
271
275
272
-def BM_genshi(python, options):
- return run_perf_script(python, options, "genshi")
276
+# def BM_genshi(python, options):
277
+# return run_perf_script(python, options, "genshi")
278
279
280
def BM_sqlalchemy_declarative(python, options):
setup.py
@@ -3,6 +3,7 @@
3
# FIXME:
4
#
5
# - REENABLE HG_STARTUP BENCHMARK.
6
+# - REENABLE GENSHI BENCHMARK.
7
8
# Update dependencies:
9
0 commit comments