Skip to content

Commit 746fa92

Browse files
authored
Disable sdk-analyzer bot and extend timeout (#2037)
1 parent 6a1cec0 commit 746fa92

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ dart:
66
env:
77
- DARTDOC_BOT=main
88
- DARTDOC_BOT=flutter
9-
- DARTDOC_BOT=sdk-analyzer
9+
# Disable pending #2036
10+
#- DARTDOC_BOT=sdk-analyzer
1011
- DARTDOC_BOT=packages
1112
- DARTDOC_BOT=sdk-docs
1213
script: ./tool/travis.sh

test/dartdoc_integration_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void main() {
6969
expect(outputLines, contains(matches('^ warning:')));
7070
expect(outputLines.last, matches(r'^found \d+ warnings and \d+ errors'));
7171
expect(outputDir.listSync(), isNotEmpty);
72-
});
72+
}, timeout: new Timeout.factor(2));
7373

7474
test('invalid parameters return non-zero and print a fatal-error',
7575
() async {

0 commit comments

Comments
 (0)