Skip to content

Commit

Permalink
add an ignore to analyze snippet code (#106079)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherfujino authored Jun 16, 2022
1 parent ea28f28 commit 6671503
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/bots/analyze_snippet_code.dart
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,8 @@ class _SnippetChecker {
// Remove output from building the flutter tool.
stderr.removeWhere((String line) {
return line.startsWith('Building flutter tool...')
|| line.startsWith('Waiting for another flutter command to release the startup lock...');
|| line.startsWith('Waiting for another flutter command to release the startup lock...')
|| line.startsWith('Flutter assets will be downloaded from ');
});
// Check out the stderr to see if the analyzer had it's own issues.
if (stderr.isNotEmpty && stderr.first.contains(RegExp(r' issues? found\. \(ran in '))) {
Expand Down

0 comments on commit 6671503

Please sign in to comment.