Skip to content

Commit 31da240

Browse files
authored
add -v to flutter install invocation when setting up android run tests (#153894)
Experiment to help troubleshoot flutter/flutter#153367
1 parent 37ba70c commit 31da240

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dev/devicelab/lib/tasks/run_tests.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ class AndroidRunOutputTest extends RunOutputTask {
8383
print('uninstalling...');
8484
final Process uninstall = await startFlutter(
8585
'install',
86-
options: <String>['--suppress-analytics', '--uninstall-only', '-d', deviceId],
86+
// TODO(andrewkolos): consider removing -v after
87+
// https://github.com/flutter/flutter/issues/153367 is troubleshot.
88+
options: <String>['--suppress-analytics', '--uninstall-only', '-d', deviceId, '-v'],
8789
isBot: false,
8890
);
8991
uninstall.stdout

0 commit comments

Comments
 (0)