Skip to content

Commit

Permalink
disable airtable
Browse files Browse the repository at this point in the history
  • Loading branch information
vilterp committed Oct 6, 2024
1 parent 10d7d1d commit 9194e9c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions util/testBench/benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,13 @@ export async function runAll(benchmarks: { [name: string]: BenchmarkSpec[] }) {
console.group(entry.name);
const res = await entry.run();
console.log(res);
const recordName = `${suiteName}/${entry.name}`;
const airtableRecords = await postResultToAirtable(recordName, res);
console.log(
"posted to airtable:",
airtableRecords.map((r) => r.id)
);
// TODO: reenable when airtable has higher row limit
// const recordName = `${suiteName}/${entry.name}`;
// const airtableRecords = await postResultToAirtable(recordName, res);
// console.log(
// "posted to airtable:",
// airtableRecords.map((r) => r.id)
// );
console.groupEnd();
}
console.groupEnd();
Expand Down

0 comments on commit 9194e9c

Please sign in to comment.