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
This commit is contained in:
parent
f8b07e230a
commit
c8dbd00199
@ -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';
|
|||||||
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() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user