Unverified Commit 734cc1a1 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] work around hostonly test (#67369)

Many of the host only devicelab tests were relying on doctor to download android dependencies.
parent 42fa4f03
......@@ -25,6 +25,13 @@ class DoctorCommand extends FlutterCommand {
@override
final String name = 'doctor';
@override
Future<Set<DevelopmentArtifact>> get requiredArtifacts async => <DevelopmentArtifact>{
// This is required because the gradle hostonly tests do not correctly specify
// their dependencies.
DevelopmentArtifact.androidGenSnapshot,
};
@override
final String description = 'Show information about the installed tooling.';
......
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