-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Implement "iterations" directive for customer tests #124541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This will let us reduce the number of iterations for some customer tests that are known to be slow but that we've decided to accept anyway.
| fetch.add(line.substring(6)); | ||
| } else if (line.startsWith('update=')) { | ||
| update.add(Directory(line.substring(7))); | ||
| } else if (line.startsWith('iterations=')) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this now mean that this directive appearing will override the default value of 1 that gets used in flutter/flutter CI?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, see runner.dart (and run_tests.dart) below. It uses the lower of the two values.
christopherfujino
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
auto label is removed for flutter/flutter, pr: 124541, due to - The status or check suite Windows build_tests_1_3 has failed. Please fix the issues identified (or deflake) before re-applying this label. |
Implement "iterations" directive for customer tests
This will let us reduce the number of iterations for some customer tests that are known to be slow but that we've decided to accept anyway.