@kradle/cli 0.0.12 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -229,13 +229,13 @@ export class Evaluator {
|
|
|
229
229
|
this.tui.stop();
|
|
230
230
|
console.log("");
|
|
231
231
|
}
|
|
232
|
+
if (options.openMetabase ?? true) {
|
|
233
|
+
openInBrowser(`https://daunt-fair.metabaseapp.com/dashboard/10-runs-analysis?tags=${iterationTag}`);
|
|
234
|
+
}
|
|
232
235
|
const errors = this.runner?.getAllStates().filter((state) => state.status === "error");
|
|
233
236
|
if (errors?.length > 0) {
|
|
234
237
|
throw new Error(`${errors.map((error) => error.error).join("\n\n")}`);
|
|
235
238
|
}
|
|
236
|
-
if (options.openMetabase ?? true) {
|
|
237
|
-
openInBrowser(`https://daunt-fair.metabaseapp.com/dashboard/10-runs-analysis?tags=${iterationTag}`);
|
|
238
|
-
}
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
241
|
* Handle state change from runner
|
|
@@ -238,7 +238,7 @@ export class Runner {
|
|
|
238
238
|
// Don't await - run concurrently
|
|
239
239
|
this.startRun(index);
|
|
240
240
|
// Wait a bit to avoid overwhelming the API
|
|
241
|
-
await this.delay(
|
|
241
|
+
await this.delay(350);
|
|
242
242
|
}
|
|
243
243
|
// Wait a bit before checking again
|
|
244
244
|
await this.delay(500);
|
package/oclif.manifest.json
CHANGED