Skip to content

Commit a041ab2

Browse files
committed
Disable hg_startup again
1 parent e5e3fec commit a041ab2

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

doc/changelog.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Changelog
44
Version 1.0.1
55
-------------
66

7-
* Reenable hg_startup benchmark: mercurial 5.2 is now officially compatible
8-
with Python 3.
97
* Update dependencies:
108

119
* Django: 3.0 => 3.0.3

pyperformance/benchmarks/__init__.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@
2020
'genshi',
2121
'go',
2222
'hexiom',
23-
'hg_startup',
23+
24+
# FIXME: this benchmark fails with:
25+
# Unable to get the program 'hg' from the virtual environment
26+
# 'hg_startup',
27+
2428
# html5lib is not compatible with Python 3.9. It has been fixed, but there
2529
# is no release yet.
2630
# https://github.com/html5lib/html5lib-python/issues/419
2731
# 'html5lib',
32+
2833
'json_dumps',
2934
'json_loads',
3035
'logging',
@@ -84,8 +89,8 @@ def BM_2to3(python, options):
8489
return run_perf_script(python, options, "2to3")
8590

8691

87-
def BM_hg_startup(python, options):
88-
return run_perf_script(python, options, "hg_startup")
92+
# def BM_hg_startup(python, options):
93+
# return run_perf_script(python, options, "hg_startup")
8994

9095

9196
def BM_Chameleon(python, options):
@@ -230,8 +235,8 @@ def BM_nbody(python, options):
230235
return run_perf_script(python, options, "nbody")
231236

232237

233-
#def BM_html5lib(python, options):
234-
# return run_perf_script(python, options, "html5lib")
238+
# def BM_html5lib(python, options):
239+
# return run_perf_script(python, options, "html5lib")
235240

236241

237242
def BM_richards(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 HTML5LIB BENCHMARK.
6+
# - REENABLE HG_STARTUP BENCHMARK.
67
#
78
# Update dependencies:
89
#

0 commit comments

Comments
 (0)