0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

fix benchmark publish (#7232)

This commit is contained in:
Ryan Dahl 2020-08-28 11:57:06 -04:00 committed by GitHub
parent 7e946858a4
commit 2573d0957f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,17 @@
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
from util import build_path
from benchmark import read_json, write_json
def read_json(filename):
with open(filename) as json_file:
return json.load(json_file)
def write_json(filename, data):
with open(filename, 'w') as outfile:
json.dump(data, outfile)
current_data_file = os.path.join(build_path(), "bench.json")
all_data_file = "gh-pages/data.json" # Includes all benchmark data.