Skip to content

Commit

Permalink
Mark flutter create pubspec templates as test exempt (#3954)
Browse files Browse the repository at this point in the history
The templates are tested in https://github.com/flutter/flutter/blob/main/packages/flutter_tools/test/commands.shard/permeable/create_test.dart by creating and analyzing them, so any issue with changed dependencies or pubspec format would be caught.
  • Loading branch information
parlough authored Oct 16, 2024
1 parent 3437f68 commit 66a13bc
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ class GithubWebhookSubscription extends SubscriptionHandler {
filename == 'DEPS' ||
filename.endsWith('TESTOWNERS') ||
filename.endsWith('pubspec.yaml') ||
filename.endsWith('pubspec.yaml.tmpl') ||
// Exempt categories.
filename.contains('.github/') ||
filename.endsWith('.md') ||
Expand Down

0 comments on commit 66a13bc

Please sign in to comment.