Unverified Commit c8dbd001 authored by Greg Spencer's avatar Greg Spencer Committed by GitHub

Skip flaky date picker tests on Windows (#32817)

Date picker tests have been flaky on Windows for a long time, and repeatedly require restarting of bots. In the interest of productivity, disabling them on Windows.

Related to #19696
parent f8b07e23
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'dart:ui'; import 'dart:ui';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
...@@ -16,7 +17,11 @@ import 'feedback_tester.dart'; ...@@ -16,7 +17,11 @@ import 'feedback_tester.dart';
void main() { void main() {
group('showDatePicker', () { group('showDatePicker', () {
_tests(); _tests();
}); },
// Skip on Windows because this test is quite flaky when run on Windows,
// until https://github.com/flutter/flutter/issues/19696 is fixed.
skip: Platform.isWindows,
);
} }
void _tests() { void _tests() {
......
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