Unverified Commit 577f5eb0 authored by Zachary Anderson's avatar Zachary Anderson Committed by GitHub

Disable flutter_build_with_compilation_error_test on Windows (#81951)

For https://github.com/flutter/flutter/issues/81837

https://github.com/flutter/flutter/issues/81950 to re-enabled
parent 7f1d1414
...@@ -17,8 +17,11 @@ void main() { ...@@ -17,8 +17,11 @@ void main() {
final List<String> targetPlatforms = <String>[ final List<String> targetPlatforms = <String>[
'apk', 'apk',
'web', 'web',
if (platform.isWindows) // TODO(zra): Re-enable after https://github.com/flutter/flutter/issues/81837
'windows', // is addressed.
// https://github.com/flutter/flutter/issues/81950
// if (platform.isWindows)
// 'windows',
if (platform.isMacOS) if (platform.isMacOS)
...<String>['macos', 'ios'], ...<String>['macos', 'ios'],
]; ];
......
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