Adds a skip message for analyzer (#158890)

#158880 causes the linux analyzer to complain for not having a skip
message.
This commit is contained in:
Mitchell Goodwin 2024-11-13 14:38:56 -08:00 committed by GitHub
parent 3a075deede
commit 5f93a7f7ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -142,7 +142,7 @@ void main(List<String> args) async {
},
// TODO(matanlurey): Debug why flutter build apk often timesout.
// See https://github.com/flutter/flutter/issues/158560 for details.
skip: buildCommand == 'apk' ? 'flutter build apk times out' : false,
skip: buildCommand == 'apk' ? 'flutter build apk times out' : false, // Temporary workaround for https://github.com/flutter/flutter/issues/158560.
);
}