From 2573d0957f7c724e89aa6e9118e16bd44fca7a67 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 28 Aug 2020 11:57:06 -0400 Subject: fix benchmark publish (#7232) --- tools/build_benchmark_jsons.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'tools/build_benchmark_jsons.py') diff --git a/tools/build_benchmark_jsons.py b/tools/build_benchmark_jsons.py index 315dd9cb6..164eb9746 100755 --- a/tools/build_benchmark_jsons.py +++ b/tools/build_benchmark_jsons.py @@ -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. -- cgit v1.2.3