Skip to content

Commit

Permalink
Skip flaky date picker tests on Windows (flutter#32817)
Browse files Browse the repository at this point in the history
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 flutter#19696
  • Loading branch information
gspencergoog authored and kiku-jw committed Jun 14, 2019
1 parent a63047f commit 669f93a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/flutter/test/material/date_picker_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:io';
import 'dart:ui';

import 'package:flutter/rendering.dart';
Expand All @@ -16,7 +17,11 @@ import 'feedback_tester.dart';
void main() {
group('showDatePicker', () {
_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() {
Expand Down

0 comments on commit 669f93a

Please sign in to comment.