Unverified Commit 3af88c55 authored by Dan Field's avatar Dan Field Committed by GitHub

add heartbeat (#29056)

parent cb1b6502
......@@ -473,7 +473,12 @@ Future<void> _processTestOutput(
Stream<String> testOutput,
bq.TabledataResourceApi tableData,
) async {
final Timer heartbeat = Timer.periodic(const Duration(seconds: 30), (Timer timer) {
print('Processing...');
});
await testOutput.forEach(formatter.processRawOutput);
heartbeat.cancel();
formatter.finish();
if (tableData == null || formatter.tests.isEmpty) {
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment