Disable DDS and Dart profiling for Android driver tests. (#152696)

Work around https://github.com/flutter/flutter/issues/152684, and probably indefinitely if we don't need it.
This commit is contained in:
Matan Lurey 2024-08-01 13:13:42 -07:00 committed by GitHub
parent 7777d67a66
commit e11abea9d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,6 +44,11 @@ Future<void> runFlutterDriverAndroidTests() async {
'flutter', 'flutter',
<String>[ <String>[
'drive', 'drive',
// There are no reason to enable development flags for this test.
// Disable them to work around flakiness issues, and in general just
// make less things start up unnecessarily.
'--no-dds',
'--no-enable-dart-profiling',
'--test-arguments=test', '--test-arguments=test',
'--test-arguments=--reporter=expanded', '--test-arguments=--reporter=expanded',
], ],