Unverified Commit b7101b45 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] disable added integration test due to Cirrus flakes (#52782)

parent 46f0a5f7
......@@ -278,15 +278,11 @@ Future<void> _runToolTests() async {
final String suffix = Platform.isWindows && subshard == 'commands'
? 'permeable'
: '';
// Only linux has Chrome installed and is running web integration tests.
// See `_pubRunTest` for more information.
final bool forceSingleCore = Platform.isLinux && subshard == 'integration';
await _pubRunTest(
toolsPath,
testPaths: <String>[path.join(kTest, '$subshard$kDotShard', suffix)],
tableData: bigqueryApi?.tabledata,
enableFlutterToolAsserts: true,
forceSingleCore: forceSingleCore,
);
},
);
......
......@@ -47,7 +47,7 @@ void main() {
reason: 'After $i steps, debugger should stop at $expectedLine but stopped at $actualLine'
);
}
}, skip: !Platform.isLinux); // only linux shards have Chrome installed.
}, skip: true); // This test is incredibly flaky on Cirrus
tearDown(() async {
await flutter.stop();
......
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