Skip to content

Commit fb121f5

Browse files
authored
Merge pull request #6 from mattip/change-exe
Change exe for new benchmarks, still report historical data for old exe
2 parents d453f75 + b5573f1 commit fb121f5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

codespeed/views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ def gethistoricaldata(request):
122122
default_results = {}
123123
for rev in default_taggedrevs:
124124
res = Result.objects.filter(
125-
executable=default_exe, revision=rev, environment=env)
125+
# executable=default_exe,
126+
revision=rev, environment=env)
126127
if not res:
127128
logger.info('no results for %s %s %s' % (str(default_exe), str(rev), str(env)))
128129
continue

speed_pypy/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
SHOW_REPORTS = False
8888
SHOW_HISTORICAL = True
8989
DEF_BASELINE = {'executable': 'cpython', 'revision': '2.7.11'}
90-
DEF_EXECUTABLE = 'pypy-c-jit-64'
90+
DEF_EXECUTABLE = 'pypy-jit-64'
9191
DEF_ENVIRONMENT = 'benchmarker'
9292

9393

0 commit comments

Comments
 (0)