Skip to content

Commit d61efab

Browse files
committed
Update generic exemptions + todo of investigation.
1 parent 39ee3ac commit d61efab

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

app/test/service/download_counts/download_counts_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import 'package:test/test.dart';
1515
import '../../shared/test_services.dart';
1616

1717
void main() {
18-
group('', () {
18+
group('download counts', () {
1919
testWithProfile('Ingest download counts', fn: () async {
2020
final pkg = 'test';
2121
final downloadCounts =

app/test/shared/utils.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,15 @@ void scopedTest(
5353
allMatchedMessages.addAll(matchedMessages);
5454
}
5555
// remove known messages that can be ignored for now
56+
// TODO: investigate why these messages are flaky
5657
logMessages.removeWhere((m) =>
5758
allMatchedMessages.contains(m) ||
5859
m.startsWith('SEVERE failed to delete task-worker ') ||
5960
m.startsWith('SHOUT Download counts sync was partial.') ||
61+
(m.startsWith('SEVERE Failed to proccess line') &&
62+
m.contains('daily_download_counts')) ||
63+
m.contains(
64+
'appeared in download counts data for file daily_download_counts') ||
6065
(m.startsWith('SEVERE daily_download_counts') &&
6166
m.endsWith('.jsonl is empty.')) ||
6267
m.startsWith(

0 commit comments

Comments
 (0)