Merge pull request #156 from devoncarew/skip_test_windows
skip a test on windows
This commit is contained in:
commit
4c99319f5d
@ -24,6 +24,9 @@ defineTests() {
|
||||
temp.deleteSync(recursive: true);
|
||||
});
|
||||
|
||||
// This test consistently times out on our windows bot. The code is already
|
||||
// covered on the linux one.
|
||||
if (!Platform.isWindows) {
|
||||
// Verify that we create a project that is well-formed.
|
||||
test('init flutter-simple', () async {
|
||||
InitCommand command = new InitCommand();
|
||||
@ -44,6 +47,7 @@ defineTests() {
|
||||
expect(exec.exitCode, 0);
|
||||
},
|
||||
// This test can take a while due to network requests.
|
||||
timeout: new Timeout(new Duration(minutes: 3)));
|
||||
timeout: new Timeout(new Duration(minutes: 2)));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user