Commit fac9efba authored by Ryan Macnak's avatar Ryan Macnak Committed by GitHub

Run coverage tests verbosely to help diagnose timeouts. (#8198)

parent 52f20d16
......@@ -56,8 +56,10 @@ Future<Null> main() async {
);
List<String> coverageFlags = <String>[];
if (Platform.environment['TRAVIS'] != null && Platform.environment['TRAVIS_PULL_REQUEST'] == 'false')
if (Platform.environment['TRAVIS'] != null && Platform.environment['TRAVIS_PULL_REQUEST'] == 'false') {
coverageFlags.add('--coverage');
coverageFlags.add('-v');
}
// Run tests.
await _runFlutterTest(p.join(flutterRoot, 'packages', 'flutter'),
......
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