File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed
packages/flutter_tools/lib/src Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,13 @@ class TestCommand extends FlutterCommand {
156
156
157
157
@override
158
158
Future <Null > runCommand () async {
159
+ if (platform.isWindows) {
160
+ throwToolExit (
161
+ 'The test command is currently not supported on Windows: '
162
+ 'https://github.com/flutter/flutter/issues/8516'
163
+ );
164
+ }
165
+
159
166
List <String > testArgs = < String > [];
160
167
161
168
commandValidator ();
Original file line number Diff line number Diff line change @@ -224,15 +224,6 @@ class _FlutterValidator extends DoctorValidator {
224
224
messages.add (new ValidationMessage ('Engine revision ${version .engineRevisionShort }' ));
225
225
messages.add (new ValidationMessage ('Tools Dart version ${version .dartSdkVersion }' ));
226
226
227
- if (platform.isWindows) {
228
- valid = ValidationType .missing;
229
-
230
- messages.add (new ValidationMessage .error (
231
- 'Flutter tools are not (yet) supported on Windows: '
232
- 'https://github.com/flutter/flutter/issues/138.'
233
- ));
234
- }
235
-
236
227
return new ValidationResult (valid, messages,
237
228
statusInfo: 'on ${osName ()}, channel ${version .channel }' );
238
229
}
You can’t perform that action at this time.
0 commit comments